Nov 8, 2007 #1 makk07 Programmer Aug 22, 2007 24 US HI Everyone, I would like to have an alternate grey row shading in my detail section to make the data easier to read. I am using crystal XI, please help me out. Thanks in advance mak
HI Everyone, I would like to have an alternate grey row shading in my detail section to make the data easier to read. I am using crystal XI, please help me out. Thanks in advance mak
Nov 8, 2007 1 #2 Madawc Programmer Sep 5, 2002 7,628 GB Right-click on the section and choose Section Expert. Choose the Colour tab. Code: If Remainder({#MyCount}, 2) = 0 then crGrey else crNoColor Madawc Williams (East Anglia, UK). Using Windows XP & Crystal 10 Upvote 0 Downvote
Right-click on the section and choose Section Expert. Choose the Colour tab. Code: If Remainder({#MyCount}, 2) = 0 then crGrey else crNoColor Madawc Williams (East Anglia, UK). Using Windows XP & Crystal 10
Nov 8, 2007 1 #3 kskid Technical User Mar 21, 2003 1,767 US From the left side of the report and click on Section Expert. On the detail section, click on the color tab, then click on the x-2 button and enter the following formula if remainder(RecordNumber,2) = 0 then color(230,230,230) else nocolor The color I use is a lighter shade of gray or you can use CrGray -lw Upvote 0 Downvote
From the left side of the report and click on Section Expert. On the detail section, click on the color tab, then click on the x-2 button and enter the following formula if remainder(RecordNumber,2) = 0 then color(230,230,230) else nocolor The color I use is a lighter shade of gray or you can use CrGray -lw
Nov 8, 2007 1 #4 IanWaterman Programmer Jun 26, 2002 3,511 GB Go to detail section expert In right hand pane click color tab Paste this in formula button If remainder(recordnumber,2) = 0 then crsilver Ian Upvote 0 Downvote
Go to detail section expert In right hand pane click color tab Paste this in formula button If remainder(recordnumber,2) = 0 then crsilver Ian