Link to home
Start Free TrialLog in
Avatar of Gordon Hughes
Gordon HughesFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Excel formula

Need help with an if statement
Have 3 cells , A B  C
Looking for:- formula in cell C
If cell A is blank then cell C is blank
Else if cell A has a value then cell A multiplied by Cell B
ASKER CERTIFIED SOLUTION
Avatar of Subodh Tiwari (Neeraj)
Subodh Tiwari (Neeraj)
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
use isblank() method

=IF(ISBLANK(A1);"";A1*B1)
@LazyFold

Lets assume that cell A1 also contains a formula in it like =IF(D1="","",D1) OR =IF(ISBLANK(D1),"",D1)  and suppose D1 is blank or empty and as a result A1 would also be blank, in that case what do you expect your formula to return?
Avatar of Gordon Hughes

ASKER

Works a treat and superfast response