Forum Discussion
Glennbart
Nov 17, 2023Copper Contributor
Help, I forgot how to write a "if" statement formula
Hello and thank you in advance. I used to know how to do this but my brain is mush lately. So, I am trying to create a :If" formula that looks at a cell with 2 choices in a drop down menu Bil...
- Nov 17, 2023
In H6
=IF(G6="Bill", F6, IF(G6="Pending", G6, "something else") )or, if only two options exist
=IF(G6="Bill", F6, G6 )
SergeiBaklan
Nov 17, 2023Diamond Contributor
In H6
=IF(G6="Bill", F6, IF(G6="Pending", G6, "something else") )
or, if only two options exist
=IF(G6="Bill", F6, G6 )Glennbart
Nov 17, 2023Copper Contributor
Thank you so much. Works great.
- SergeiBaklanNov 17, 2023Diamond Contributor
Glennbart , you are welcome