shading every other line item
shading every other line item
is it possible to shade every other line item on a report? __if so let me know__Thanks,
-
- Posts: 35
- Joined: Tue Oct 10, 2017 12:44 pm
=> RE: shading every other line item
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
-
- Posts: 0
- Joined: Mon Feb 19, 2018 5:20 am
==> RE: shading every other line item
ok Thanks a lot will this work on invoicing also?