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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Datagulf
Responsive Resident
Responsive Resident

How to create Age bins

I want to replicate the following table and am looking for the formula to achieve so. 

Datagulf_0-1669993067439.png

I have a Quotes with data that is as the following. 

Quote IDClient Name Quote Date 
1NAme1 12/11/2022 
2 NAme2 11/11/2022 
3 NAme3 09/11/2022 
4 NAme4 06/11/2022 
5 NAme5 02/11/2022 
6 NAme6 09/10/2022 
7 NAme7 09/07/2022 
8 NAme8 02/07/2022 
9 NAme9 05/06/2022 


The plan is to have the count of the quotes clustered in 0-30 days from today, 30-60 days from today and 60-90 days. All that surpasses should be in the rest than 90 days .. 
So if today's date is 2/12/2022, then it should go back and check up to 2/11/2022 and input the number of quotes that fall in that bracket between 0-30 days, and between 02/11/2022 to 02/10/2022 - Should input all that are 30 -60 days. 
Please assist. Thanks

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Datagulf , You can create a column like

 

New column =

var _day = datediff([Date], Today(), day)

return

Switch( True(),

_day <=30 , "   0- 30",

_day <=60 , "   31- 60",

_day <=90 , "   61- 90",

"> 90 ")

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Datagulf , You can create a column like

 

New column =

var _day = datediff([Date], Today(), day)

return

Switch( True(),

_day <=30 , "   0- 30",

_day <=60 , "   31- 60",

_day <=90 , "   61- 90",

"> 90 ")

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors