Excel allows you to write a nested if statements. Following is a typical if statement:
=if(A3=A4,"True","False")
To write another condition inside the one returns true:
=if(A3=A4,if(B3=B4,"True","False"),"False")
Simply Explaining Technology
Excel allows you to write a nested if statements. Following is a typical if statement:
=if(A3=A4,"True","False")
To write another condition inside the one returns true:
=if(A3=A4,if(B3=B4,"True","False"),"False")