Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi
I have a column of days worked for employees and i want to group them into Timebands of less than 3 months, between 3 and 6 months and greater than 6 months.
I think i may need to create new measures but i am not sure of the formula needed.
any ideas?
Solved! Go to Solution.
Hi Amy
Apologies for late response - yes that helped!
thank you so much.
Hi @Anonymous ,
Does that make sense? If so, kindly mark my answer as a solution to help others having the similar issue and close the case. If not, let me know and I'll try to help you further.
Best regards
Amy Cai
Hi Amy
Apologies for late response - yes that helped!
thank you so much.
Hi @Anonymous ,
You can create measure using DAX below.
Range Judge = SWITCH(TRUE(),MAX(Table1[days])<=90,"less than 3 months", MAX(Table1[days])>90&&MAX(Table1[days])<=180,"between 3 and 6 months", MAX(Table1[days])>180,"greater than 6 months")
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Well, it depends on your data structure. In this (rare) case, you may need a calculated column or a conditional column from Power Query.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 57 | |
| 33 | |
| 33 | |
| 18 | |
| 16 |
| User | Count |
|---|---|
| 66 | |
| 65 | |
| 44 | |
| 30 | |
| 29 |