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!

Changing the background color of specified row

Status
Not open for further replies.

caster

Programmer
Jan 3, 2003
32
IN
Hi All,
I'm fetching employee id,name,salary and dept_num from a table and displaying it by grouping on DEPT_NO.
I want to make the background color of the SALARY field as blue if that amount of salary is maximum in that department.
Any suggestions???
Thanks
 
You could check into Look Ahead Aggregates (ValueExp = Max(Salary) ); however, this would have to be in a control in the Content frame, and you would still have to check each salary value against this max value in order to know whether or not to change the color.

Or, just do this is the SQL stmt.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top