VBA output to report

A

AJ

I have a VBA procedure that I run after a user inputs some information into a
form. Can I output the calculations from the VBA procedure to a report and
maybe include some information from a table?
Example:

Input(form) --->> VBA procedure (Calculate fields) --->output to report

I guess what I am trying to find out is can you assign a value to a field on
a report in a similar way you do to a form?
[Forms]![NameOfYourForm]![NameOfTheControl]
 
T

Tom van Stiphout

On Thu, 24 Jan 2008 20:14:01 -0800, AJ <[email protected]>
wrote:

Take 1 minute to try it.
You'll find yes, if you preceed the expression with an "=" sign.
You can also call public functions:
=SomeFunction()

-Tom.
 
Ð

ДениÑ

AJ said:
I have a VBA procedure that I run after a user inputs some information into
a
form. Can I output the calculations from the VBA procedure to a report and
maybe include some information from a table?
Example:

Input(form) --->> VBA procedure (Calculate fields) --->output to report

I guess what I am trying to find out is can you assign a value to a field
on
a report in a similar way you do to a form?
[Forms]![NameOfYourForm]![NameOfTheControl]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top