How do I change the formula based on text in another cell...
Closed
GrimmLynne
Posts
1
Registration date
Friday October 25, 2013
Status
Member
Last seen
October 25, 2013
-
Oct 25, 2013 at 12:28 PM
Blocked Profile - Oct 25, 2013 at 01:13 PM
Blocked Profile - Oct 25, 2013 at 01:13 PM
Related:
- How do I change the formula based on text in another cell...
- Number to words in excel formula - Guide
- How to change language in kmplayer - Guide
- How to change dinosaur in chrome - Guide
- How to change free fire google account to another google account - Guide
- How to change time in whatsapp - Guide
1 response
Good Afternoon.
The logic for the formula you are looking for is in this format:
=if(logic test, true, false)
So, it would look like this:
cell a1 contains:
50
cell b1 contains:
=if(a1<49,"The value is less than 50","The Value is more than 50")
Cell b1 would now contain "The value is more than 50".
Please understand, you can nest logical if statements like so:
=if(logical test for test #1,if(logical test for #2,"true to test#2","false to test #2"),"false to test #1")
I hope this helps.
//ark
-Contributor
The logic for the formula you are looking for is in this format:
=if(logic test, true, false)
So, it would look like this:
cell a1 contains:
50
cell b1 contains:
=if(a1<49,"The value is less than 50","The Value is more than 50")
Cell b1 would now contain "The value is more than 50".
Please understand, you can nest logical if statements like so:
=if(logical test for test #1,if(logical test for #2,"true to test#2","false to test #2"),"false to test #1")
I hope this helps.
//ark
-Contributor