IF Function: Copy data from another column and eliminate 0 values for blank cells and the word "grand total"



Syntax:

=IF (logical_test, [value_if_true], [value_if_false])

Arguments:
logical_test - A value or logical expression that can be evaluated as TRUE or FALSE.
value_if_true - [optional] The value to return when logical_test evaluates to TRUE.
value_if_false - [optional] The value to return when logical_test evaluates to FALSE.

Usage notes: 
Use the IF function to test for or evaluate certain conditions, and then react differently depending on whether the test was TRUE or FALSE.

For example, let's say you want to assign either "Pass" or "Fail" to students based on a test score. In that case, you need to test the sore itself (for each student) and then return either "Pass" or "Fail".

If you had a score in cell C6, and you wanted to test this score to see if is at least 70, you would use this:

C6>=70
This translates as "C6 contains a value greater than or equal to 70". It will either be TRUE or FALSE, depending on the value in C6. You then supply a value that the IF function should return if the test is TRUE, and a value to use if the test is FALSE.

Putting it all together, you would use this formula:

=IF(C6>=70, "Pass", "Fail")
This is the formula that appears D6 in the example shown. When it is copied down the column, it will test every score and return the correct result.

Nested IF statements:
You may here the term "Nested IF" or "Nested IF statement". This refers to using more than one IF function so that you can test for more conditions and return more possible results. Each IF statement needs to be carefully "nested" inside another so that the logic is correct.

For example, the following formula can be used to assign an grade rather than a pass / fail result:

=IF(C6<70,"F",IF(C6<75,"D",IF(C6<85,"C",IF(C6<95,"B","A"))))
Up to 64 IF functions can be nested. However, in general, you should consider other functions, like VLOOKUP or HLOOKUP for more complex scenarios, because they can handle more conditions in much more streamlined fashion.

Logical operators:
When you are constructing a test with IF, you can use any of the following logical operators:
Comparison operatorMeaningExample
=equal toA1=D1
>greater thanA1>D1
>=greater than or equal toA1>=D1
<less thanA1
<=less than or equal toA1<=D1
<>not equal toA1<>D1
Notes:

  • If any of the arguments to IF are supplied as arrays, the IF function will evaluate every element of the array.
  • To count things conditionally, use the COUNTIF or the COUNTIFS functions.
  • To sum things conditionally, use the SUMIF or the SUMIFS functions.

For Example to Copy data from another column and eliminate 0 values for blank cells and the word grand total:
=IF(IF('Sheet_Name'!$A8="","",'Sheet_Name'!$A8)="Grand Total","",(IF('Sheet_Name'!$A8="","",'Sheet_Name'!$A8)))

logical_test - IF('Sheet_Name'!$A8="","",'Sheet_Name'!$A8)="Grand Total"
value_if_true - "" (It means print Blank)
value_if_false - (IF('Sheet_Name'!$A8="","",'Sheet_Name'!$A8)

No comments:

Post a Comment

Thank You.

https://linwintech.blogspot.com/