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!Get Fabric certified for FREE! Don't miss your chance! 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))
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 69 | |
| 60 | |
| 47 | |
| 20 | |
| 16 |