I am working on a SSRS 2008 Report that when entering a list of ITEM numbers in a multiple data type parameter will return the Item Number, UPC, Description, and Item Status.
It works. But my problem is that it sorts my data in my report. Example. If I enter the following Item Numbers in the parameter: ZZZ DDD AAA HHH
My report shows the Data alphabetic as: AAA DDD HHH ZZZ
I want my data to be displayed in the order of the ITEM Number how I enter them.
I have One Data Set: SELECT ItemNo, UPC, Description, Status FROM Product WHERE ItemNo IN (@ITEM)
I have One Parameter: @ITEM Datatype: Text Allow multiple values
Please Help!