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
Haytham Amairah
Apr 05, 2019Silver 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
- noelosborne1Apr 08, 2019Copper Contributor
Thank you for your help. It worked out how I wanted and has allowed me to learn a little.
Noel