ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
2
DMT custom function tutorials
3
4
You can use this sheet as a "reference" for the DMT custom Google Sheet functions that return data on the channels you request information from YouTube, tiktok, Instagram, and Twitch (coming soon)
5
Documentation
6
You can also reference our latest documentation on the Creator Data Google Sheets extension custom functions here
7
8
9
10
11
12
13
14
DMTChannelEstimate( channelName, channelType,refreshData )
15
Get the 30 day estimated performance for a hypothetical video from the provided channel
16
@MrBeast
17
86079430
18
19
Notes
20
1. the "channelName" param currently expects the "username" of the channel, in this case "@mrbeast" including the "@" symbol prefixed
21
2. the "channelType" refers to the platform the channel is published on, for example: (only one of these values per function) "youtube","tiktok","instagram","twitch"
22
3. the "refreshData" param is optional and we recommend remain as "false", only change to true if you want to force the function to recalculate
23
24
DMTChannelAudience( channelName, channelType, audienceData, includeHeaders )
25
Get the audience demographics and geographics for a given channel
26
27
#ERROR!
28
29
30
31
32
33
34
35
Notes
36
1. the "audienceData" parameter expects either "demo" or "geo" values, and returns the demographic or geographic (country by percentage) values respectively
37
2. the "includeHeaders" parameter is optional and defaults to "true" for including the "field headers" in the generated table
38
39
40
41
DMTChannelFinder( url, keywords, channelType )
42
Get a list of channels using keyword search, or find lookalikes from the channel url
43
Notes are on top because the sample function will generate a longer list of rows composed of channels found in the search
44
Notes
45
1. This is demo'ing keyword search as an example of how to correctly input a keyword search
46
2. the function will use keywords if both a url and keywords are provided
47
3. You can use Null() to not pass any value in for a given parameter
48
4. the "channelType" refers to the platform the channel is published on, for example: (only one of these values per function) "youtube","tiktok","instagram","twitch"
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100