I am new to SSRS. What I thought should be very simple took me 1 day and I am not able to fix it. All I need is the following
Select * from table1 where len(username) <= 6
Select * from table1 where len(username) >= 7
I want to display a drop menu with two options Short Username and Long Username. When a username click the short username the first query result is showed and when the user click Long username the second query result is showed.
What I did so far is I added a parameter list with two values i.e Short parameter list = 6 and Long parameter list = 7. I then added two filters. In the first the expression= len(NameColumn.value) operator= <= value = @parameter. In the second the expression= len(NameColumn.value) operator= >= value = @parameter. Can you please what can I do to achieve it.
