FunkyBunch
Instructor
Hello All,
I am writing a report that tells wether a piece of equipment has been transfered, deleted, or added.
I am working with a history table so the only way i can check if the equipment has been transferred is to use an sql expression to count how many times the id shows up in the table. Here is the SQL Expression:
(select count(access_equip_Fw)
from user_Defined20_Fw
where access_equip_fw = "USER_DEFINED20_FW"."ACCESS_EQUIP_FW"
group by access_equip_Fw
having count(access_equip_Fw) > 1)
What i need to do is somehow relate the select statement to each detail line of the report.
Please help
I am writing a report that tells wether a piece of equipment has been transfered, deleted, or added.
I am working with a history table so the only way i can check if the equipment has been transferred is to use an sql expression to count how many times the id shows up in the table. Here is the SQL Expression:
(select count(access_equip_Fw)
from user_Defined20_Fw
where access_equip_fw = "USER_DEFINED20_FW"."ACCESS_EQUIP_FW"
group by access_equip_Fw
having count(access_equip_Fw) > 1)
What i need to do is somehow relate the select statement to each detail line of the report.
Please help