I have two datasets.
The first one is a list of clientid's for a given time period. There are thousands.
The second dataset receives the selected clientid's and runs a query based on them. I was using a multiparameter and checking several at a time, but that is cumbersome. Instead, I want to use two parameters to choose my records:
RecordStart
RecordStop
I want to be able to enter which records to pull. For example RecordStart 10 to RecordStop 20 would pull row 10 to 20 from my list dataset. If I chose 100 to 220, it would pull rows 100 to 120.
How do I code for this in my main dataset? I am a at a loss. Right now my where statement parses the multiple clientid's in my where statement. I am just not sure how to do a where that does what I explained above. Anyone?
The first one is a list of clientid's for a given time period. There are thousands.
The second dataset receives the selected clientid's and runs a query based on them. I was using a multiparameter and checking several at a time, but that is cumbersome. Instead, I want to use two parameters to choose my records:
RecordStart
RecordStop
I want to be able to enter which records to pull. For example RecordStart 10 to RecordStop 20 would pull row 10 to 20 from my list dataset. If I chose 100 to 220, it would pull rows 100 to 120.
How do I code for this in my main dataset? I am a at a loss. Right now my where statement parses the multiple clientid's in my where statement. I am just not sure how to do a where that does what I explained above. Anyone?