Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello all
Apologies if this is a repost, keep receiving an error message when I try to post my message.
I am looking to create a visual, preferably a waterfall, where I only want to see categories that are either higher than 10K or lower than -10K. All other categories should be aggregated to a new category called lets say OTHER.
I believe this is only possible to happen with DAX. Or is they any shorting option in the waterfall chart or something from the market place that allows such separation.
Thanks
Fanis
Solved! Go to Solution.
Hi @Anonymous ,
Create a calculated column as below:
Column = IF('Table'[Value]>1000||'Table'[Value]<-1000,'Table'[Column2],"other")
Then put the column and value in a waterfall chart, and you will see:
For the related .pbix file,pls click here.
Hi @Anonymous ,
Create a calculated column as below:
Column = IF('Table'[Value]>1000||'Table'[Value]<-1000,'Table'[Column2],"other")
Then put the column and value in a waterfall chart, and you will see:
For the related .pbix file,pls click here.
@Anonymous , Not sure I got it completely.
But a measure like this can help
calculate([measure],filter(table[measure]>=10000 || table[measure]<=-10000))
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 33 | |
| 29 |
| User | Count |
|---|---|
| 132 | |
| 90 | |
| 78 | |
| 66 | |
| 65 |