Excel 2007 Formula Help - if cell is empty...

Solved/Closed
Melissa - Nov 10, 2009 at 11:35 AM
 Melissa - Nov 11, 2009 at 01:29 PM
Hello,

Simple formula of =J3-SUM(L3:X3) BUT if J3 is empty then I want the formula to run as =C3-SUM(L3:X3)

What is the proper formula to get the calculation to utilize J3 if there is a value and to use C3 if there is not ?

Any assistance is greatly appreciated. Thank you.

1 response

aquarelle Posts 7140 Registration date Saturday April 7, 2007 Status Moderator Last seen March 25, 2024 491
Nov 10, 2009 at 04:54 PM
Hello,

Try with this formula :
=IF(J3="",C3-SUM(L3:X3),J3-SUM(L3:X3))

Best regards
2
Thank you Aquarelle! The formula worked like a charm !
0