on 2023 Nov 28 10:23 AM
Hi,
I have a requirement in webi to show ID_Count with more than 30 should be displayed in the report. So for that i created a variable and applied below formula
=[ID_Count] Where ([ID_Count] > 30)
But that formula applied on to the total not to the entire report , I want to hide below all lines those sum are below 30 Please help
Regards
Suraj Kumar
Request clarification before answering.
You could make this easier by including a bit more background information and data.
Here is my sample data with a variable named Var ID Count defined as...
=[Value1] + [Value2] + [Value3]
The short answer is you need a filter on your table. You could do that in a variety of ways.
You could filter where the variable you created is not null. I created a variable called Var GT 30 Original to mirror yours and then filtered on that as follows...
That is it.
An alternative would be to create a variable like this...
=If([Var ID Count] > 30; 1; 0)
And then add a filter to only include the rows with value of 1.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
62 | |
8 | |
7 | |
6 | |
6 | |
5 | |
5 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.