use if condition expression when true as result

sparc

Registered User.
Local time
Today, 21:27
Joined
Jul 29, 2013
Messages
18
In many case using IF function in excel I must use if condition expression when true as value, example:

if(condition >=0;condition;expression when false)

if (5+3 > 0; 5+3; 0)

is there a shorter way for use
 
What is the problem with using the one you just got?
 
Problem is when conditional expression is long or very complex, ploblem is in readability formula , or a copy complex expression again. I use for example very simple expression.
 
function NZ in access 2013 removed a similar Problem with the function IsNull
 
If you press Alt+Return in your formula, you can move different conditions to new lines in order to space it out a bit.
 
1. In modern versions of Excel 2013 and 2010, you can use up to 64 nested IF functions. In older versions of Excel 2003 and lower, up to 7 nested IF functions can be used.

2. once an IF formula includes more than 5 nested IF functions, you may want to optimize it by using the alternatives found here:
https://www.ablebits.com/office-addins-blog/2014/12/03/excel-if-function-iferrror-ifna/
The Array is very efficient if there are many records.
 

Users who are viewing this thread

Back
Top Bottom