Hide a row based on criteria

deanvilar

Registered User.
Local time
Today, 01:16
Joined
Mar 27, 2013
Messages
63
Help Guys ....

I need to hide a row in my report for example (in Detail Format event of the report):

If me.txtReleased = "YES" then
hide row
endif

thanks in advance.
 
I would modify your source query to exclude records where txtReleased = "YES"
 
I did ... but the problem is that the query comes first to display the data and it cant fetch the value YES or NO generated from detail format event of the report.
 
I found it!!!!
if me.released = "YES" then
Cancel = True
end if
 
Excellent - you could rewrite as

Cancel=me.released = "YES"
 

Users who are viewing this thread

Back
Top Bottom