@David44Coder, the only way I know to make things different for different columns on a Datasheet is to change colors via specifying the color you want in the Format code for a column. To set Format for a column, right-click in Design View and turn on Properties. Then click on what you want to set properties for. Access doesn't display which column you're in on the grid as you're setting properties in a query, so it can be easy to do the wrong one -- you'll see when you look at the datasheet view
In a form, however, the name of the control is displayed at the top of the property sheet.
on Format code for numbers, there are 4 parts:
1. format for positive numbers
2. format for negative numbers
3. format for 0 (zero)
4. format for null
each part is separated with ; semi-colon
this makes positive values green, negative values red, and zeros blue, and also specifies a comma to separate thousands, and to show 2 decimal places unless it's zero, in which case, it can look different to be easier to notice.
[green]#,##0.00;[red]-#,##0.00;[blue]-0-
for text, you can color the text blue using this:
[blue]@
Available colors:
Black, Blue, Green, Cyan, Red, Magenta, Yellow, White.