Hi there,
is it possible to do a site command? Or a hack for a list of indexed urls anyone?
I'd need to extract the urls indexed and import into Excel... Is that possible?
Thanks!!
Katrin
Hi there,
is it possible to do a site command? Or a hack for a list of indexed urls anyone?
I'd need to extract the urls indexed and import into Excel... Is that possible?
Thanks!!
Katrin
To output each of the found URL's, try this:
=Dump(Connector("GoogleSearch.SearchResults","*","all","ruffles.com","all",,,"relevance","google.com","URL",FALSE,19))
If you just want a count, use this:
=Connector("GoogleSearch.NumberOfResults","site:"&"ruffles.com","all",,"all",,,"google.com")
=Connector("GoogleSearch.NumberOfResults","site:"&A1,"all",,"all",,,"google.com")
NOTE: I'm using the "&" character to combine both text strings because the concatenate function breaks this (and some other) functions.
Hi Ryan, thanks for your help!
This one works for my site (German Excel ) :
=Dump(Connector("GoogleSearch.SearchResults";"*";"all";"example.de";"all";"anytime";"2017-08-03";"2017-08-09";"relevance";"google.de";"Title,Description,URL";FALSCH;1000))
The URIs I am searching for should be 6.500 in total. That's what Google says for the site: command. But within Excel I only get up to 90 URIs even with the limit set at 1000 - seems strange to me.. Any idea why?