referencing text box within report

A

Alessia D

I have the report set up something like this

Runtime Date
0 01/042006
2 02/05/2007

I have the formula to find the minimum and max runtimes at the end of the
page, but what formula can I use to reference the date associated with that
runtime?
 
G

ghetto_banjo

Is the Run time always unique?


If so you could use a DLookup formula. Something like:


=Dlookup("[DateFieldName]", "table/query Name", "[Runtime] = " & Max
([RunTime]) )
 
G

ghetto_banjo

if your Runtime is always unique, then you could use a DLookup
function:

=Dlookup("[DateFieldName", "Table / Query Name", "[Runtime] = " & Max
([Runtime]))
 

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

Similar Threads


Top