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.
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
3 Replies
- Haytham AmairahSilver Contributor
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
- noelosborne1Copper Contributor
Thank you for your help. It worked out how I wanted and has allowed me to learn a little.
Noel
- TwifooSilver ContributorWhat do you want to be shown in E4 if D4 is “No” or Blank?