Freezing panes, rows, and columns in spreadsheets allow you to always view selected portions of your spreadsheet.
Freeze
1. Select location - Select the portion of your spreadsheet that is to be frozen. Select the cell immediately below and to the right of the row and column you wish to freeze. In our example yesterday, we froze column A and rows 1,2,&3 so we selected cell B4.
2. View Tab - On the Ribbon, go to the View Tab
3. Window Group - In the View Tab, go to the Window Group
4. Freeze Panes - Click the arrow on the Freeze Panes icon
- Freeze Panes
- Freeze Top Row
- Freeze First Column
5. Unfreeze - Only available in the Freeze Panes arrow if portions of the spreadsheet are already frozen
NOW Function
=NOW()
The now function inputs the current date and time in the selected cell allowing user of the spreadsheet to know when it was created.
You can edit the appearance of the date and time generated by the NOW function by selecting the Number tab in the Format dialog box and then the Date catergory.
IF Function
=IF(logic test, value if true, value if false)
1. Logic test - The logic test is the question that you are asking. The example in class was if sales in January were more than or equal to the goal of $4,750,000.
2. Value if true - This is the value that will appear in the cell if the the logic test is true. If sales were more than or equal to $4,750,000, then the value of the bonus would be $100,000
3. Value if false - This is the value that will appear in the cell if the logic test is false. If sales did not reach $4,750,000, there would be no bonus, $0.
Since both the goal and the bonus were in our What If section of the spreadsheet, it was necessary to use absolute cell reference to refer to the the goal and bonus amounts.
=IF(b4>=$B$24, $B$19, 0)
By changing the values in B24 or B19 we can quickly change the projection report, allowing us to make business decisions based on new figures quickly.