i´ve got a FORM... this from call a REPORT and this report has a SUBREPORT
the SUBREPORT has the Select ....Where id IN (array)
I call the REPORT and passes some parameters and I recive them in the report by the "OpenArgs" variable.
the report name is [Factura B compuesta] ...
so I have this sql sentence in the Record Source field in the subreport.
SELECT....
WHERE (((deudas.id) In (Forms![Factura B compuesta].OpenArgs)) AND ((deudas.cancelada)=False));
Now the question is... how do I have to pass the parameters in the OpenArgs variable??? the syntax...
y tried these and they didn´t work
(4,2,5)
(4;2;5)
4,2,5
4;2;5
"(4,2,5)"
etc...
if I pass only one parametre it works...
for example: (4)
but it doesn't work with more than one parameter
any help will be appreciated
sorry for my poor english
the SUBREPORT has the Select ....Where id IN (array)
I call the REPORT and passes some parameters and I recive them in the report by the "OpenArgs" variable.
the report name is [Factura B compuesta] ...
so I have this sql sentence in the Record Source field in the subreport.
SELECT....
WHERE (((deudas.id) In (Forms![Factura B compuesta].OpenArgs)) AND ((deudas.cancelada)=False));
Now the question is... how do I have to pass the parameters in the OpenArgs variable??? the syntax...
y tried these and they didn´t work
(4,2,5)
(4;2;5)
4,2,5
4;2;5
"(4,2,5)"
etc...
if I pass only one parametre it works...
for example: (4)
but it doesn't work with more than one parameter
any help will be appreciated
sorry for my poor english