Forum Discussion
NickS1655
Oct 26, 2022Copper Contributor
Help needed: extracting text if present in cell otherwise jump to the next one
Hello everyone,
I am having trouble to fullfill a simple task.
I have text in column A,B,C but not necessarly in all of them.
If there is text in column C then it should be shown, if not jump to column B and check here.
The if() formulas I have build do not work and even the isblank() formula is not helping, as the IF() function won't recognize "TRUE" and "FALSE".
I hope someone can help
Thank you very much
1 Reply
Sort By
- Martin_WeissBronze Contributor
Hi NickS1655
if I understand you right, you want to select from right column to left column. Then this could be a solution:
=IF(C1<>"",C1,IF(B1<>"",B1,IF(A1<>"",A1,"nothing found")))