PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → Filter in Report
Filter in Report
Iniciado por Marius van der Walt, 22,may. 2004 13:12 - 1 respuesta
Publicado el 22,mayo 2004 - 13:12
Hi
I've used the report wizzard to create a report based on a table.
However, I want to filter records that I don't want to print. The report manual p110 say that you can do but I can't figure it out. It is a simple report so I don't want to use a query in the report to do that.
For example I want to add code in the "Filter (process record?) of " embeded point, to only print records that has an amount of less than 10.
I've tried the code:
if File1.Amount > 10 then False
Regards
Marius
Publicado el 22,mayo 2004 - 13:23
Hi
The power of Windev is amazing
I've figured it out, thanks
if File1.Amount > 10 then
Result(False)
end
Regards
Marius
Hi
I've used the report wizzard to create a report based on a table.
However, I want to filter records that I don't want to print. The report manual p110 say that you can do but I can't figure it out. It is a simple report so I don't want to use a query in the report to do that.
For example I want to add code in the "Filter (process record?) of " embeded point, to only print records that has an amount of less than 10.
I've tried the code:
if File1.Amount > 10 then False
Regards
Marius