I am taking value from another tab (Page 2) using Auto Fill formula in (Page 1)
=arrayformula(IFS(ROW(A:A)=1,"Total",A:A="","",TRUE,iferror(index(Page2!A:A,match(A:A,Page2!B:B,0)),"Missing")))
It's showing Missing instead showing value
But if I use I could get the expected result for A2 cell from Page1
=iferror(index(Page2!A:A,match(A2,Page2!B:B,0)),"Missing")
I need to match from another tab and fill in the current tab with auto fill
IFS is not supported under autofill
use:
=ARRAYFORMULA({"Total"; IF(A2:A="",,
IFERROR(INDEX(Page2!A:A, MATCH(A2:A, Page2!B:B, 0)), "Missing"))})
or:
=ARRAYFORMULA({"Total"; IF(A2:A="",,
IFNA(VLOOKUP(A2:A, {Page2!B:B, Page2!A:A}, 2, 0), "Missing"))})
Related
I need to create a fórmula that when it is dragged down it jumps a certain pre defined number of cells. For example, I have this column:
However I want a formula that when I drag down it jumps 6 rows, something like =A(1+6) in the second row and so on, so it gets to look like this:
Is there a "pythonic" way to do that or I need to create some regexextract in a new column + query formula getting only non blank cells?
Example sheet in this link: https://docs.google.com/spreadsheets/d/1RYzX31i8sBFROwFrQGql_eZ6tPu69KDesqzQ3hSj028/edit#gid=0
Try in B2
=offset($A$1;5*row(A2)-10;)
try instead:
=QUERY(A1:A; "skipping 5"; 0)
I'm new to Google Sheets, and I'm looking to get my C5 cell filled with green if its value is equal to my A5 cell's value.
Can anyone help me with it?
Right click on any cell in column C and then left click on conditional formatting. Choose the settings exactly as you see in the following screenshot and use the following custom formula:
=AND(C1=A1,C1<>"")
Sheet reference I'm currently working with: https://docs.google.com/spreadsheets/d/1UxwkzBTnwOLV341Vciy8_NWylMSSjhb7SkFDqVW6ImI/edit?usp=sharing
So, kinda what the title says.. I'm completely stumped here.
Trying to pull the data (including the column headers) over from tab 2 into tab 1 based on the drop down (grey colored) menu item chosen by the user in tab 1. (The "potions" are listed in column A of Tab 2 as well, row 1 indicates "herbs" required for any particular potion by the variable numbers in the corresponding cells for the "potions")
Essentially, you choose a "potion" in the grey drop down, then a "recipe list" will populate in the remaining white space in tab 1.
Any ideas here?
Try the following formula in cell B12:
=transpose(filter(transpose(filter('Recipe Data'!B:BJ,(row('Recipe Data'!A:A)=1)+('Recipe Data'!A:A=B9))),len(transpose(filter('Recipe Data'!B:BJ,('Recipe Data'!A:A=B9))))))
In addition to Kishan's contribution, you can also try
=transpose(query(transpose({'Recipe Data'!B1:BJ1; filter('Recipe Data'!B2:BJ, 'Recipe Data'!A2:A=B9)}), "where Col2 is not null", 0))
I have a sheet that I want to have a link to the cell within the same sheet.
I want to link the following Phone names to the second image cell.
Above is a list of phones
I read this and attempted it but this did not work for me.
=HYPERLINK("#MyRange","Shift to there")
My formula in cell M2
=INDEX($C$2:$C$70,MATCH(N2,$I$2:$I$70,0))
And this
=HYPERLINK(VLOOKUP(M2,'Copy of Phones DP'!phones,1,0),M2)
This one links me to a new tab and searches for the following
http://galaxy%20s9+%2064gb/
The expected outcome would be When I click on the phone name in column M it goes to the phone row in column C
EDIT:
Ok so I'm getting close
I use the following
=HYPERLINK("#" & CELL("address",INDEX(C2:C64,MATCH(M3,phoneName,0))),B5)
It does not go to the cell but the URL changes in Google Sheets to
https://docs.google.com/spreadsheets/d/1Krsba8iEQU10z/edit#$C$58
=ARRAYFORMULA(IF(LEN(M2:M11),
HYPERLINK("https://docs.google.com/spreadsheets/d/16nnuzNRx_kGGJm1EBVX7kBT2bfW1-2TYwSiuaLF-QIA/edit#gid=130953988&range=C"&
VLOOKUP(M2:M11, {Sheet1!C2:C, ROW(Sheet1!C2:C)}, 2, 0), M2:M11), ))
The command you need is CELL
=HYPERLINK(CELL("address",INDEX(C2:C64,MATCH(M3,phoneName,0))),B5)
What would be the custom formula to highlight a cell in Column K of Sheet 1 if it matches a cell in column K of Sheet 2? I also do not want it to include blank cells.
By "a" cell I am assuming any cell (rather than a specific one) so please try selecting ColumnK in Sheet 1, Format > Conditional formatting..., Custom formula is:
=match(K1,indirect("Sheet 2!K:K"),0)>0
with formatting of your choice. Range: should show K:K.