Absolute and Relative Cell Address
Absolute and Relative Cell Address
Conditional formatting
In the Home tab of the ribbon (thats geek for the menu in the
top with all the buttons) click Conditional Formatting.
Then hold your pointer over the option Highlight cells rules
and apply the rule based on requirements
EG If you want to highlight values less than 100
You enter the value that the cell content must be less than
in order to trigger the conditional formatting.
As you see the standard option is Light Red Fill with Dark Red
Text.
If you just click OK now, all the quantities that are below 100
will be formatted this way.
If you want to change that (and you probably will) click the
drop-down arrow next to the right box and select one of the
other presets.
IF
Eg
=IF(C2=Yes,1,2)
f you need to test for more than one condition, then take one of
several actions, depending on the result of the tests, you can nest
multiple IF statements together in one formula. You'll often hear this
referred to as "nested IFs".
=IF(C5<64,"F",IF(C5<73,"D",IF(C5<85,"C",IF(C5<95,"B",
"A"))))