South Africa’s biggest forum. Discuss, discover, and connect with thousands of members.
Format cell, number, scientific shows 5.70E+6
is acceptable or no?
Yes, you can force engineering notation (-3, 0, 3, 6, 9 as exponent) but, as far as I know, one cannot force it through cell formatting to stick to a specific value.I see no way short of manipulating the number and having a column next to the text with superscript formated on the 6 (left aligned)
=CONCATENATE((5700000/1000000),"x10")
(right aligned)
There's sure to be a more elegant solution but it escapes me now.
=IF(AND(D8>=0.78,D8<=2.7),"Pass","Fail")Thread Necro, maybe we should sticky this for future problems?
I want to write the following formula If 2.7>=D8>=0.78, "Pass", "Fail"
=IF(AND(D8>=0.78,D8<=2.7),"Pass","Fail")