I want to use google docs to grab google search results
My formula is:
=ImportXML(URL,"//div[#id='resultStats']")
Google docs always returns #N/A, is there something wrong with the formula?
Thanks
Related
Hello sages from StackOverflow,
I'm in search of a formula that can relate 3 diferent conditions, I tried using some IF statemets with the TEXTJOIN formula but I find myself lost in the way,
I got a data base just like this (image below), just a much bigger one, I want to search for a key like MCAA01 and obtain the doc's that have in front of it a "NO" all in one cell, like if you use the formula TEXTJOIN("/",...
My problem is that I cannot find a way to relate the whole column of the doc's with the key,
I tried something like TEXTJOIN("/",TRUE,IF(2ndIMAGE!A2=1stIMAGE!B1,IF(B2="no",1stIMAGE!A2,""),""))
This does give a result but it's just 1 thing, not whole answer
please sages of StackOverflow, you're my only hope. Thank you!
You need FILTER() then TEXTJOIN().
=TEXTJOIN("/",TRUE,FILTER($A$2:$A$4,FILTER($B$2:$H$4,$B$1:$H$1=$B8)="No",""))
If your version of excel supports LAMBDA() function then you can try below formula and you do not need to drag the formula to each cell. It will spill results automatically.
=BYROW(B8:B14,LAMBDA(a,TEXTJOIN("/",TRUE,FILTER(A2:A4,FILTER(B2:H4,B1:H1=a)="No",""))))
I am working in google sheets and I would like to ask you one thing.
I want to check if cell is blank and if it is it should return 0, if it is not it should calculate the formula, which I have used befere.
https://i.stack.imgur.com/Qh4dc.png (can not post image...)
But I am still getting this #ERROR! which says error when analyzing formula. I have tried it in Microsoft Excel and exact formula works...
Did somebody already solved this?
Thanks a lot! 👌
try:
=IF(ISBLANK(J15); 0; J15-J14)
I have an export of our blog, and I'm trying to see which SKUs where listed in that blog post.
I have a list of SKUs and the Blog Content in a spreadsheet. I need to figure out how to get all the SKUs in the content, into a cell next to the blog content.
I have a small sample available here:
https://www.dropbox.com/s/nf12vo66nwndpao/test-doc-v001.xlsx?dl=1
I've tried using an index/match and including a 'search' within that, but I think I might need something more. I think an index/match might only pull the 'first' SKU that it finds.
Any help is very much appreciated. Thanks!
If you create an array that checks for numeric responses using the Find function and joint them with Textjoin, you should get what you want. You may have to enter CTL shift enter when entering this formula if you don't have spill range. Sample file here (view it in browser for best results).
=TEXTJOIN(",",TRUE,FILTER(A:A,(ISNUMBER(FIND(A:A,$E$2)))))
I'm trying to create a forecast formula in excel using the if (like a sumif, for instance) but I'm not being able to find anything on Google that describes how it can be done.
My idea is not that complex, but excel does not support directly the calculation. I'm trying to do something similar to the following:
=sumif($A:$A;Z1;$B:$B)
But instead the sumif, I would like to apply any FORECAST formula, such as FORECAST.ETS, FORECAST.LINEAR, etc..
Someone imagines how to do so?
Thanks in advance!
I am trying to get VLOOKUP to return a blank if an error is returned that should show #NA
I have tried multiple functions such as IF(ISNA....) as was done on Microsoft's website and most currently
=IF(IFNA(VLOOKUP('Order Form'!B27,'Delivery Calculator'!A14:C17,3,FALSE)),"",VLOOKUP('Order Form'!B27,'Delivery Calculator'!A14:C17,3,FALSE))
The vlookup: VLOOKUP('Order Form'!B27,'Delivery Calculator'!A14:C17,3,FALSE) works by itself except that I get an NA which I wanted to change to a blank.
Thanks for any help!
With your help and my reading of the Office.com IFNA page, how about:
=IFNA(VLOOKUP('Order Form'!B27,'Delivery Calculator'!A14:C17,3,FALSE),"")