Forum Discussion
Mark Hayman
Mar 27, 2017Copper Contributor
Multiple IF function
Hi, I need some help. I'm creating a excel document to help guide user into the correct process to follow. In my example there are 2 classes (A and B) and an example budget limit of £10. My p...
- Mar 28, 2017
Hi Mark,
It could be something like
=CHOOSE(($E$2="A")*2+($B$4>$B$2)+1, "PROCESS C", "PROCESS B", "PROCESS B", "PROCESS A")
SergeiBaklan
Mar 28, 2017Diamond Contributor
Hi Mark,
It could be something like
=CHOOSE(($E$2="A")*2+($B$4>$B$2)+1, "PROCESS C", "PROCESS B", "PROCESS B", "PROCESS A")
Mark Hayman
Mar 28, 2017Copper Contributor
Great... this solves my problem !
thank you.