Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Conditional Formatting

Status
Not open for further replies.

mmt4331

Programmer
Dec 18, 2000
125
US

The following is what I have on my report:

Assigned_By Assignee Resolution Who_Acknowl

MMT4332 00077714 Completed MMT4331
MMT4332 00077323 Pending
MMT4332 00077534 Completed
MMT4332 00077533 User Resolved MMT4332


The two middle rows that have nothing under - Who_Acknowl - I would like to make the Assigned_By, Assignee, and Resolution fields red. The Who_Acknowl field that has something showing I would like to leave at black. How do I do this? Thx.

Mark
 
In the format font section for the fields you want highlighted red, add code similar to the following:

if IsNull(Who_Acknowl) then
Color (255,0,0)
else
Color (0,0,0)

You may also need to check for Who_Acknowl = ''.
 

Rscero:

Thx for helping me out there. It works perfectly.

Mark
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top