COGNOiSe.com - The IBM Cognos Community

Legacy Business Intelligence => COGNOS ReportNet => Report Studio => Topic started by: naveen10046 on 09 Mar 2010 08:36:08 PM

Title: Alternate row colors in a report
Post by: naveen10046 on 09 Mar 2010 08:36:08 PM
Hello All,
I want to display my list report in alternate colours for each row as shown  below. Can anyone explain me how to do this.(http://www.codeproject.com/KB/aspnet/Extend_GridView/extend1.jpg)




With Regards
Naveen :)
Title: Re: Alternate row colors in a report
Post by: angela on 10 Mar 2010 04:16:44 PM
http://www.tek-tips.com/viewthread.cfm?qid=1563045&page=9

Google saves the day again.
Title: Re: Alternate row colors in a report
Post by: MFGF on 11 Mar 2010 06:29:06 AM
Good old Blom saves the day again! Thanks for the link Angela.  :)
Title: Re: Alternate row colors in a report
Post by: naveen10046 on 15 Mar 2010 11:54:40 PM
Thanks ;D Angela

There is another way as well.
1)create a Boolean variable with expression " mod(RowNumber(),2)=1 "
2)Go to conditional explorer and select ' yes ' under the boolean variable.
3)Then select the entire report and set the backgroung color as "blue".
This one is simple and works fine...
Title: Re: Alternate row colors in a report
Post by: dhanu on 19 Aug 2010 10:45:11 PM
Suppose you are creating a report with two data items
Customer_Name and Total-sales respectively.

Create two new data items.
1.Dataitem1: Running-count([CUSTOMER_NAME])
2.Dataitem2: Mod([Data Item1],2)

Create a variable :
Boolean [Query1].[Data Item2]=1 or 0

Come to conditional explorer bar, select YES, under
properties select the background color.

Come to conditional explorer bar, select NO, under
properties select the background color.

Save report and run.
Title: Re: Alternate row colors in a report
Post by: mbirrell on 25 May 2015 08:08:05 PM
Put this in a conditional style:

case
when (RowNumber ()/ 2) = round((RowNumber ()/ 2),0) THEN
1
ELSE 0
end