A Alt Member Local time Yesterday, 19:01 Joined Sep 6, 2021 Messages 35 Sep 7, 2021 #1 Hi everyone, I made a report based on form inputs but it doesn't work (drop-down works partially and report doesn't filter at all). Can you tell me what I've done wrong? Attachments access+report+parameters_CIMA.accdb access+report+parameters_CIMA.accdb 1 MB · Views: 177
Hi everyone, I made a report based on form inputs but it doesn't work (drop-down works partially and report doesn't filter at all). Can you tell me what I've done wrong?
MajP You've got your good things, and you've got mine. Local time Yesterday, 19:01 Joined May 21, 2018 Messages 9,631 Sep 7, 2021 #2 You cannot change the signature of an Event Procedure. Code: Private Sub Report_Open(Cancel As Integer) You cannot rename that to Private Sub Report_Open_CIMA(Cancel As Integer) It will not trap the event
You cannot change the signature of an Event Procedure. Code: Private Sub Report_Open(Cancel As Integer) You cannot rename that to Private Sub Report_Open_CIMA(Cancel As Integer) It will not trap the event
A Alt Member Local time Yesterday, 19:01 Joined Sep 6, 2021 Messages 35 Sep 7, 2021 #3 Wow... Thanks a lot. I totally miss it.