> Fred,
> It is not included in the record source because I need several records
[quoted text clipped - 3 lines]
> tried combining them into one querie with no success-maybe a normalization
> problem?? Does the Dlookup string you give me go directly into the text box?
It's always a good idea, when replying to a previous post, to include
the relevant part of the previous post in the message. It makes it
easier for some one to make sense of your message.
If your query returns just one record, as you stated above, you can
write the expression directly in the control source of an UNBOUND text
control:
= DLookUp("[SumOfSumOfPieces]","[Total month to date Periphery Grind
Kyon Query]")
or you can write the expression using VBA:
[SomeControl] = DLookUp("[SumOfSumOfPieces]","[Total month to date
Periphery Grind Kyon Query]")
Or you can write it in another query:
NewColumn:DLookUp("[SumOfSumOfPieces]","[Total month to date Periphery
Grind Kyon Query]")

Signature
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
Steven Phillips - 18 Mar 2005 04:48 GMT
Thanks Fredg,
Worked like a dream!!!