C
Chinni Krishna Reddy
I have a function like this..
=IF(expr > 0 , expr , " ")
Now if my expr is again a big formula.. then is there any way of avoiding
repeating it as the second argument.. ie any temporary variable for storage
is available? like this...
=IF ((a=long_expr) > 0 , a , "");
=IF(expr > 0 , expr , " ")
Now if my expr is again a big formula.. then is there any way of avoiding
repeating it as the second argument.. ie any temporary variable for storage
is available? like this...
=IF ((a=long_expr) > 0 , a , "");