Hi,
I have a database from which i wish to pull out a 'summary' like report.
this report will consist of users, and the weeks for which the data has been input for each user.
the table from which the data is pulled looks something like this:
fldid{user id} | fldcategoryid | fldcategorydata
i now have to produce a report which should look like this:
user id | fldcategory## - fldcategory##
the latter represents a range of weeks. so i need to be able to link each of the textboxes on the report to the CURRENT fldid that is being looked at - thus creating a dynamic lookup for each user for each of the categoryid's
i hope this makes sense. I would really appreciate if someone could lend a hand with this one.
Thank you.
PS:
i have tried something like this:
=DLookUp("fldcategorydata","tableUserCategoryData","fldid = " & [Reports].[report1].[fldid])
and it works - but ONLY to the point of displaying the one single datastream for the first fldid being looked at, it doesnt filter down through to the rest of the fldid's in the table that is binded to the report.
thank you once again.
I have a database from which i wish to pull out a 'summary' like report.
this report will consist of users, and the weeks for which the data has been input for each user.
the table from which the data is pulled looks something like this:
fldid{user id} | fldcategoryid | fldcategorydata
i now have to produce a report which should look like this:
user id | fldcategory## - fldcategory##
the latter represents a range of weeks. so i need to be able to link each of the textboxes on the report to the CURRENT fldid that is being looked at - thus creating a dynamic lookup for each user for each of the categoryid's
i hope this makes sense. I would really appreciate if someone could lend a hand with this one.
Thank you.
PS:
i have tried something like this:
=DLookUp("fldcategorydata","tableUserCategoryData","fldid = " & [Reports].[report1].[fldid])
and it works - but ONLY to the point of displaying the one single datastream for the first fldid being looked at, it doesnt filter down through to the rest of the fldid's in the table that is binded to the report.
thank you once again.