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

zero suppress the report

Status
Not open for further replies.

sitmapa

Programmer
Aug 26, 2002
69
PA
cr 8.5
vb 6.0

i have this conditional formula:

{database.fielda} <> 0

for select only the records that have any number different of zero in the fielda, but cr show record that have zero in this field.

i show this fielda in my program, and show the values like

006414E-14

how can exclude the record with this values....

thank´s for some help or any idea, i will be apreciate,,

saludos
 
It looks like your numbers are very small but not quite zero. You need to choose a threshold and show all numbers greater than your threshold. For instance, {database.fielda} > 0.0125.
 
another way could be to truncate to say 3 decimals

Truncate({database.fielda} <> 0



Jim Broadbent
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top