Expression Count (1 Viewer)

azhar2006

Registered User.
Local time
Today, 07:28
Joined
Feb 8, 2012
Messages
202
Hello all
I have a main form and a subform inside. I want to execute this expression (=Count([fullname])) on the subform and I put it on the main form.
Thanks to all
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 22:28
Joined
May 7, 2009
Messages
19,245
add a Unbound Textbox (txtCount) to the Form Footer of your subform and add the following
as it's ControlSource:

=Count([fullname])


on them main form, you Refer the the Unbound textbox (txtCount) of the Subform:

=[SubformName].[Form]![txtCount]
 

bob fitz

AWF VIP
Local time
Today, 15:28
Joined
May 23, 2011
Messages
4,727
Hello all
I have a main form and a subform inside. I want to execute this expression (=Count([fullname])) on the subform and I put it on the main form.
Thanks to all
Create a text box control in the footer section of the sub form and use your expression as its control source.
Create a text box control on the main form and use a reference to the text box on the sub form as the control source for that text box.
 

azhar2006

Registered User.
Local time
Today, 07:28
Joined
Feb 8, 2012
Messages
202
add a Unbound Textbox (txtCount) to the Form Footer of your subform and add the following
as it's ControlSource:

=Count([fullname])


on them main form, you Refer the the Unbound textbox (txtCount) of the Subform:

=[SubformName].[Form]![txtCount]
Thank you very much

arnelgp

You are amazing. It worked out regularly
 

Users who are viewing this thread

Top Bottom