Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

Creating Timebands

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?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi Amy

 

Apologies for late response - yes that helped! 

 

thank you so much.

View solution in original post

4 REPLIES 4
v-xicai
Community Support
Community Support

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

 

Anonymous
Not applicable

Hi Amy

 

Apologies for late response - yes that helped! 

 

thank you so much.

v-xicai
Community Support
Community Support

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.

MattAllington
Community Champion
Community Champion

Well, it depends on your data structure. In this (rare) case, you may need a calculated column or a conditional column from Power Query.



* Matt is an 8 times Microsoft MVP (Power BI) and author of the Power BI Book Supercharge Power BI.
I will not give you bad advice, even if you unknowingly ask for it.

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.