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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors