I have a input control in my report (never used before, first time I saw it) and when I select the value - “ALL” in that and put a ReportFilter([ObjectName]) in the block cell, it gives all the values present in the object. And when I select 3 values, it gives 3 only.
I need to see - ALL when I select All in Input control, is there any solution for the same? Please guide.
Basically, it counts the number of values in a dimension with and without the Input control filter and based on the result it provides the relevant output.
Just one thing, When I used the above formula and I select multiple values - It gives me a single value so I simply put the below code instead of Else mentioned here…
I am not sure if there is any solution to this or not, but I noticed that suppose I have a input control named as STATE and If I select ALL, it shows ALL but if there is only a single value in STATE and I select that say - UNIVERSE, then also it shows ALL in the formulaed cell… Can it be possible to show the selected value?
Hi Rogerio, thanks for your response. The formula, ReportFilter works fine for everything except when there is a single value in Input control.
Due to single value, it always evaluates as 1 = 1 and display ALL wherein it should be displaying the selected value… And for that I am struggling, to find any possible solution…
Edit : First of all I am really sorry for post bump.
I guess I have got the solution, so thought to share with you guys -
=If( NoFilter(Count([ObjNam])) = Count([ObjNam]) And Pos(ReportFilterSummary("Report1");"No Filter") = 55;"All";ReportFilter([ObjName]) )