i have a report in ssrs with odbc data source as the data is stored in oracle database in the normal scenario while adding some filters in ssrs report they are not working after searching, i found that i can add these filters in the dataset query as below and this expression worked find
="SELECT * FROM VIEW_NAME " & IIF(IsNothing(Parameters!partynumber.Value),"","WHERE A.PARTY_NUMBER=:partynumber )
but when i tried to add another parameter in this expression nothing returned from the query after using the filters
so please is there any idea can help!!