I have a Crystal 9 Report set up that is to filter a dataset by a date range and by multiple ID's sent in by a VB.Net Application.
The Formula is setup as such:
{REPORT.DATE}>={?BDATE} and
{REPORT.DATE}<={?EDATE} and
{REPORT.ID} in [{?ID}]
I have experimented with various ways of sending in the ID value, and after "hardcoding" test data into the Formula Editor I saw the format should be like:
"00001", "00002"
So I setup the VB.Net app to send in a string in the same format but it is not yielding any results (I have a feeling it is sending in ""00001, "00002"").
Is there some small syntactical issue I am missing, or should (could?) this be accomplished another way? Thanks!
The Formula is setup as such:
{REPORT.DATE}>={?BDATE} and
{REPORT.DATE}<={?EDATE} and
{REPORT.ID} in [{?ID}]
I have experimented with various ways of sending in the ID value, and after "hardcoding" test data into the Formula Editor I saw the format should be like:
"00001", "00002"
So I setup the VB.Net app to send in a string in the same format but it is not yielding any results (I have a feeling it is sending in ""00001, "00002"").
Is there some small syntactical issue I am missing, or should (could?) this be accomplished another way? Thanks!