Home > Blockchain >  How would I import YouTube video views into google sheets?
How would I import YouTube video views into google sheets?

Time:09-02

I have a list of videos for which I want to easily see the number of views. Is there a way to do that with REGEXREPLACE, or some other way?

CodePudding user response:

try:

=REGEXEXTRACT(QUERY(FLATTEN(IMPORTDATA(A1)); 
 "where Col1 starts with 'viewCount'"; ); "\d ")*1

enter image description here

  • Related