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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Only want Odd IDs rows to display

Status
Not open for further replies.

capronton

MIS
Jun 28, 2013
159
US
How can I only show Odd IDs rows in my report

if ID mod ID = even then do not display record.

Can someone help with this?
 
Conditional suppression on the detail section. Section Expert, chose the formula workshop for Suppress. Put in if RecordNumber mod 2 = 1 then false else true for the formula. So unless I got the if backwards, it should work.
 
Try the following in the Record Selection formula:

Code:
{Table.RowID} Mod 2 = 1


Cheers
Pete

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top