I have a SSRS report which uses multiple datasets, let's call them D1 and D2.
D2 is a sp with one parameter. The goal is to pass values from a single column from D1 to D2 parameter.
A user-defined split function enabled me to run the SP with multiple values in a single parameter. e.g.
exec MyStoredProc '12345,6789,77891,3423498'
I just need to somehow concatenate the values from D1 with a comma.
using Default Values > Get Values from a query> D1 > Field1 only picks the first value and not all of them.
Any suggestions?