change to bold column text (1 Viewer)

mmm286

New member
Local time
Today, 09:01
Joined
Mar 29, 2014
Messages
9
Hi,
Is possible to change to bold font the text column of a datasheet view?
Many thanks and sorry for my english!
 
in datasheet view you need to use conditional formatting - either use vba in the form open or load event or in view mode, select conditional formatting from the ribbon.

Use some thing like

fieldvalue is not equal to 0 for numeric values

fieldvalue is not equal to "" for text values
 
in datasheet view you need to use conditional formatting - either use vba in the form open or load event or in view mode, select conditional formatting from the ribbon.

Use some thing like

fieldvalue is not equal to 0 for numeric values

fieldvalue is not equal to "" for text values

Thanks
Is possible to change also the name of the field and the cell color?. I attach a image of what I would like to change:
 

Attachments

  • col.jpg
    col.jpg
    42.6 KB · Views: 103
Not so far as I am aware - you would need to use a continous form instead of a datasheet - you can make a continuous form look much the same as a datasheet but lose the ability to change column widths/hide columns etc unless you write some VBA (you'll need to look online for this, I don't have it)
 

Users who are viewing this thread

Back
Top Bottom