How do I do to buy a value of a field of a report to a field of a table?

  • Thread starter Thread starter Frank Dulk
  • Start date Start date
If you're asking, how do I store the value of a report's "field" (actually,
a report's control) into a table's field, you can't do it from the report.
You'll need to use a form that has the same information as the report and do
it that way. Or run code that uses the report's RecordSource (if it includes
a field that is "bound" to the specific control on the report) to directly
edit / manipulate the table.
 
I am asking as I make a " comparison " of a field that this in the report
with a field that this in a table.

Something as:

If CompoRelat = CampoTable then
..
..
..
 
Back
Top