Statman Notes
Bug Fixes
Play Entry Sheet - Comment errors
- Cell Z6 comment - "V and W" needs changed to say "W and X".
- Cell AL6 comment - "AO" needs changed to say "AQ".
- Cell AN6 comment - "AO" needs changed to say "AQ".
- Cell AQ comment - "AK or AM" needs changed to say "AN or AO".
Customizations
Play Entry Sheet - Display background pattern on odd rows
- Highlight cells A8:BY303. The format will apply to this area.
- In the "Home" section of the ribbon (top of Excel), click the "Conditional Formatting" button.
- In the drop down menu, click on "New Rule".
- A small menu screen will appear. Click on the last arrow that says "Use a formula to determine which cells to format".
- In the "Format values where this formula is true" section, type in:
=MOD(ROW(),2)
- Click the format button and set the fill pattern style to "12.5% Gray".
- Click OK to close the Format Cells window.
- Click OK to close the New Formatting Rule window.
Play Entry Sheet - Automatically draw red lines around current entry row
- Highlight cells A8:BY303. The format will apply to this area.
- In the "Home" section of the ribbon (top of Excel), click the "Conditional Formatting" button.
- In the drop down menu, click on "New Rule".
- A small menu screen will appear. Click on the last arrow that says "Use a formula to determine which cells to format".
- In the "Format values where this formula is true" section, type in:
=AND(ISBLANK($M9),ISBLANK($N9),ISBLANK($O9),NOT(AND(ISBLANK($M8),ISBLANK($N8),ISBLANK($O8))))
- Click the format button and set the top and bottom borders to a solid red line.
- Click OK to close the Format Cells window.
- Click OK to close the New Formatting Rule window.
And
- Highlight cells A8:BY8. The format will apply to this row only.
- In the "Home" section of the ribbon (top of Excel), click the "Conditional Formatting" button.
- In the drop down menu, click on "New Rule".
- A small menu screen will appear. Click on the last arrow that says "Use a formula to determine which cells to format".
- In the "Format values where this formula is true" section, type in:
=AND(ISBLANK($M8),ISBLANK($N8),ISBLANK($O8))
- Click the format button and set the top and bottom borders to a solid red line.
- Click OK to close the Format Cells window.
- Click OK to close the New Formatting Rule window.
Add headings and page numbers to printed reports
The following steps must be done for each printable sheet. To see a list of printable sheets, select the Print tab and click on the "Click here to Print Reports" button. A "Statman Print Macro" window will appear. You must close the window before proceeding.
- At the bottom of Excel, click on the tab that corresponds to the printable sheet.
- In the "Page Layout" section of the ribbon (top of Excel), click the "Page Setup" arrow in the lower right corner. A "Page Setup" dialog will appear.
- Click on the "Margins" tab.
- Continually click the down arrow on the right side of the "Header" margin entry box until the setting is 0.
- Click on the "Header/Footer" tab.
- In the Header drop down menu, select the option that contains the sheet name and page number.
- Click OK to close the Page Setup window.
Add Black and White print option
- Press ALT-F11. This will open the Visual Basic Editor.
- Select UserForm1.
- Make the UserForm1 object look as below.
- Copy the "Game Stats" object to create the "Black & white" object.
- In the checkbox properties windows, rename the new object to "CheckBoxBW" and change the caption to "Black & white".
- In the project navigation window, right click on UserForm1 and select View Code.
- Edit each If-CheckBox block to look like the following example.
If CheckBox1.Value Then
ActiveWorkbook.Application.Sheets(Checkbox1.Caption).PageSetup.BlackAndWhite = CheckBoxBW.Value
ActiveWorkbook.Application.Sheets(CheckBox1.Caption).PrintOut copies:=1, Collate:=True
End If
- Exit the editor and save the spreadsheet.