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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

backround color 1

Status
Not open for further replies.

Newbi1

Programmer
Apr 4, 2005
64
0
0
US
I am trying to create a grid layout which there is conditional backround color of a field in CR 8.5.

If left({procRptSummaryBySiteGradeSpan;1.vcProResult},3) = "yes" then green
else
if {procRptSummaryBySiteGradeSpan;1.vcProResult} = "No" then Red
else

What would I place in here if I want no backround if neither of these conditions exist? The problem is I have the field flush again the grid and when there is a white backround, it blanks the grid lines.
 
Hi,
Have you tried:

Code:
If left({procRptSummaryBySiteGradeSpan;1.vcProResult},3) = "yes" then green
else 
if {procRptSummaryBySiteGradeSpan;1.vcProResult} = "No" then Red
else
NoColor



[profile]

To Paraphrase:"The Help you get is proportional to the Help you give.."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top