This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
I've grouped a list below but each time the report is refreshed, the new data get thrown into the "other" bucket and I have to manually group them. Is there another option to setup dynamic grouping in PowerBI? Thanks in advance for your help!
Solved! Go to Solution.
@tracyhopaulson You can do one thing, replace blank values in your data with a -1. You can make changes in the powerquery window like below and then change your dax as well. Performing calculation with blank values will not be possible, it is advisible to have numeric values in the data
Proud to be a Super User!
@tracyhopaulson you can create a custom column like below. You can add more if conditions as per your requirements.
Proud to be a Super User!
@negi007 creating custom column with the formula you provided works. Thanks so much! However, I now noticed there are some orders with missing Promised Date and Scheduled Date so the #ofDaysChg is blank. Somehow it groups these into the On Time bucket. I would like to group them into different so I added condition if(day_chg=blank(),"Forecast", but it doesn't work. What am I missing?
@tracyhopaulson You can do one thing, replace blank values in your data with a -1. You can make changes in the powerquery window like below and then change your dax as well. Performing calculation with blank values will not be possible, it is advisible to have numeric values in the data
Proud to be a Super User!
@tracyhopaulson Not sure about the issue you are having with the grouping/binning, but you could always just create a measure, like:
Measure =
VAR __DateGrouping = MAX([DateGrouping])
RETURN
SWITCH(TRUE(),
__DateGrouping = "Late","1-99 days",
__DateGrouping = "On Time","0 days",
__DateGrouping = "Very Late","100+ days",
__DateGrouping = "Very Early","Future",
"Other"
)
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 32 | |
| 26 | |
| 25 | |
| 24 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 48 | |
| 27 | |
| 23 | |
| 20 |