silly question, have you tried:
stLinkCriteria = "[RMA nr]=" & "'" & Me![RMA nr] & "' AND '" & Me![field1] & "' <> Null"
otherwise couldn't you base your report on a query that evaluates this from the form for you?
Try:
=Avg(MakeMinutes([IWR NRwkly].Duration))
You may need to have the field name in square brackets because of the space.
Also, if there are any null values you can convert them using the nz() function since the original format is text.
ie:
nz([IWR Fatwkly].Duration, "00:00:00")...
That's perfect dhookom, nice one.
I wonder then if it is possible to use the same idea to place an object instead of text? Perhaps you could create the object from within the on_page code ?
Flag works great though, thanks.
;o)
I have a report with various sections. It has a background image which is a map whose filename is decided by a query on another form. The report's 'On Load' event code tells the report to look on the form for the filename.
All of the data on the form then prints over the top.
Now I've got a...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.