hello, i have a SubReport where it has technician name Field and Item name Field and a Quantity Field
basically it represents which Technicians has taken what items and how much, its 3 fields 1 record
i have a formula on the technician ID Field on click event where if i click on ID of technician, it would open up detailed info at which dates this particular technician has received or given all items.
heres the formula.
Code:
if Not IsNull([TechniciansID])
openReport
ReportName: "the other detailed report here" <-- which has both the Technician ID and Item ID in it
View: Report
Filter Name:
Where Condition: ="[TechniciansID]=" & [TechniciansID]
Window Mode:Dialog
ok now what im looking for is a way to look at a particular Technician with a particular item
like, once clicked upon Technician ID i would see, This technician, and This Item in my other detailed report
the purpose of this is so i could measure each technicians activity with 1 item only.