How do I change the formula based on text in another cell...
Closed
GrimmLynne
Posts
1
Registration date
Friday 25 October 2013
Status
Member
Last seen
25 October 2013
-
25 Oct 2013 à 12:28
Blocked Profile - 25 Oct 2013 à 13:13
Blocked Profile - 25 Oct 2013 à 13:13
Related:
- How do I change the formula based on text in another cell...
- Based on the values in cells b77 ✓ - Excel Forum
- Logitech formula vibration feedback wheel driver - Download - Drivers
- How to change language in idm - Guide
- How to change close friends on instagram - Instagram Forum
- How do i change the name of my lg tv - 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