Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can we put a formula in the "value_if_true" field in an IF Function in Excel?

I have a situation where i need to put a formula in the Value_if_true and Value_if_false fields in an IF function but it does not seems to be working. It just keeps displaying my formula as is in the cell. Can someone help?

like image 453
Garima Kumar Avatar asked Oct 17 '25 10:10

Garima Kumar


1 Answers

This has wrong " characters

=IF(I5=0,"(12-BC5)*BE5 + BH5","BF5")

"(12-BC5)*BE5 + BH5" is a string. Not a formula. Use this.

=IF(I5=0,(12-BC5)*BE5 + BH5,BF5)
like image 198
S.Lott Avatar answered Oct 20 '25 02:10

S.Lott



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!