Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi,
I have a very tricky scenario where I want to exclude values based on + and -
For eg; in the below example I want to see all values which are less than -2 and greater than +2. In the below example I added two slicers but obviously it wont work like that.. any ideas?
Solved! Go to Solution.
Hi @mandar ,
I have created a simple sample, please refer to my pbix file to see if it helps you.
Create 2 tables with the + and - values , and then put them into different slicers.
Then create a measure.
Measure = var _1=MINX(ALLSELECTED('Table (2)'),'Table (2)'[value])
var _2=MAXX(ALLSELECTED('Table (3)'),'Table (3)'[value])
return
IF(MAX('Table'[value])>=_1&&MAX('Table'[value])<=_2,1,BLANK())
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @mandar ,
I have created a simple sample, please refer to my pbix file to see if it helps you.
Create 2 tables with the + and - values , and then put them into different slicers.
Then create a measure.
Measure = var _1=MINX(ALLSELECTED('Table (2)'),'Table (2)'[value])
var _2=MAXX(ALLSELECTED('Table (3)'),'Table (3)'[value])
return
IF(MAX('Table'[value])>=_1&&MAX('Table'[value])<=_2,1,BLANK())
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
121 | |
69 | |
66 | |
56 | |
52 |
User | Count |
---|---|
181 | |
85 | |
67 | |
61 | |
53 |