Page 1 of 1

shading every other line item

Posted: Fri Feb 03, 2006 11:54 am
by michmc
is it possible to shade every other line item on a report? __if so let me know__Thanks,

=> RE: shading every other line item

Posted: Fri Feb 03, 2006 1:04 pm
by Rick_Johnson_(Guest)
You would need two identical record band lines, one shaded, one not and a logical field to control which would print. For the record band line you could define evenodd as MOD(RECNO(),2)=0____On the first line, conditinally print if evenodd is false(the odd lines) and on the second line print if evenodd is true(the even lines).____I do this all the time and it works great.____Good luck

==> RE: shading every other line item

Posted: Fri Feb 03, 2006 1:25 pm
by MatthewEnves
ok Thanks a lot will this work on invoicing also?