Allen_Mead
New Member
- Joined
- May 31, 2019
- Messages
- 34
- Office Version
- 365
- Platform
- Windows
However, when either L7 or L8 are empty I get the classic VALUE! error.
=((N5-(L7+L8))/N5*1)
=IF(OR(L7="",L8=""),"",((N5-(L7+L8))/N5*1))
Not sure why you have *1 in there, what purpose does that serve?
try: =(N5-SUM(L7,L8))/N5 - SUM() ignore blank and empty string like ""
you got error because L7 L8 contain ""
why N5*1 ?