
By Scott Babcock
Add White Space to Access Reports for Better Readability
The more records output to an Access report, the harder it becomes to read. When you see your employees taking out their rulers to read your reports, it’s time to add some white space between the lines. To add a blank line after every five records, follow these steps:
If (textCounter Mod 4) = 0 Then
textSpacer = " "
Else
textSpacer = Null
End If
To adjust the amount of white space between the lines, simply resize the textSpacer control to the desired height.