Forum Discussion
erin-5304
Mar 30, 2023Brass Contributor
IF Formula / #Value! Error
Having trouble figuring out what is causing the #Value! error in the following formula: =IF(E18="Flat Rate",IF(C46>360,SUM(C46/2-150)*8),IF(E18>=0.01,IF(C46>300,SUM(C46/2-150)*8),"") The answ...
- Mar 30, 2023
Try
=IF(E18="Flat Rate",IF(C46>360,(C46/2-150)*8,0),IF(E18>=0.01,IF(C46>300,(C46/2-150)*8,0),0))
HansVogelaar
Mar 30, 2023MVP
Try
=IF(E18="Flat Rate",IF(C46>360,(C46/2-150)*8,0),IF(E18>=0.01,IF(C46>300,(C46/2-150)*8,0),0))
SergeiBaklan
Mar 30, 2023Diamond Contributor
I guess with "abc" in E18 result will be incorrect.
- HansVogelaarMar 30, 2023MVP
You're correct.