Mar 30 2023 08:03 AM
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 answer will be decided using 2 different cells of information, E18 and C46. Any ideas?
Mar 30 2023 08:15 AM
Mar 30 2023 08:18 AM
Mar 30 2023 08:31 AM
Please explain in words what the formula should do.
Mar 30 2023 08:35 AM
But there is no arithmetic operation with E18.
Mar 30 2023 08:52 AM
Mar 30 2023 08:58 AM
SolutionTry
=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))
Mar 30 2023 09:10 AM
Mar 30 2023 09:12 AM
As variant
=IF(
ISTEXT(E18),
IF(E18 = "Flat Rate", (C46 > 360) * (C46 / 2 - 150) * 8, ""),
IF(E18 >= 0.01, (C46 > 300) * (C46 / 2 - 150) * 8, 0)
)
Mar 30 2023 09:13 AM
I guess with "abc" in E18 result will be incorrect.
Mar 30 2023 08:58 AM
SolutionTry
=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))