Referring to a report control

jwindon

Registered User.
Local time
Today, 12:52
Joined
Aug 12, 2001
Messages
531
Is there a way to refer to a PREVIOUS record's control on a report?
 
Thanks Rich.
 
Could someone elaborate on this please?

I have a similar situation to access a previous records value in the next record in my report. How can I use the "tag" property to get this done?

I looked at the Help on Tag but not able to understand how this can be used towards this situation.

Appreciate all the help.

thanks.
 
You need to put the current value of the control into its tag property.

Me.txtYourControl.tag = Me.txtYourControl

The key to doing this of course is that you need to use the existing .tag value before you replace it with the value from the current record.
 

Users who are viewing this thread

Back
Top Bottom