Forum Discussion
noelosborne1
Apr 05, 2019Copper Contributor
Help with my formula
Hello all, I need help correcting this formula. In cell E4, I wish to show 50% of the value from C4 if D4 has the word YES. Thanks for your assistance.
- Apr 05, 2019
Hi,
Try this formula:
=IF(D4="yes",C4*50%,0)
It will return 50% of the value of cell C4 when the value of D4 is yes, otherwise it will return 0.
Hope that helps
Twifoo
Apr 05, 2019Silver Contributor
What do you want to be shown in E4 if D4 is “No” or Blank?