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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi, Can you please help me with DAX formulas, I kinda stuck.
I have START Date and END Date and need to calculate Days Between, I used this function below to create new column:
Solved! Go to Solution.
Hi @Anonymous,
Please try to create one calculated column as below:
Days Group = IF ( ISBLANK ( [Days] ), "Pending", IF ( [Days] >= 6, "6+", [Days] ) & " Days" )If the above formula is not applicable in your scenario, could you please explain which condition can be grouped as " Pending "?
Best Regards
Rena
Thank you, everyone, for the help!
Hi @Anonymous,
Please try to create one calculated column as below:
Days Group = IF ( ISBLANK ( [Days] ), "Pending", IF ( [Days] >= 6, "6+", [Days] ) & " Days" )If the above formula is not applicable in your scenario, could you please explain which condition can be grouped as " Pending "?
Best Regards
Rena
Hi @Anonymous
try to use grouping technique as described here https://docs.microsoft.com/en-us/power-bi/desktop-grouping-and-binning
Hello @Anonymous
I would recommend to use Power Query for this:
Add a custom column:
Change the column type to number:
Add a conditional column:
Result:
Cheers!
Vivek
If it helps, please mark it as a solution
Kudos would be a cherry on the top 🙂
https://www.vivran.in/
Connect on LinkedIn
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 |
|---|---|
| 52 | |
| 51 | |
| 39 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 93 | |
| 84 | |
| 33 | |
| 29 | |
| 25 |