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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
JNelson
Helper II
Helper II

Calculating quote ages

Hello,

 

I have a data set with month and count of quotes. I need a measure that will calculate Count the number of quotes that are: current (1 - 4 months); 5 - 7 months old; 8 - 12months old and greater than 12 months old based off today's current month. 

An example of what I want is below. I will then put the measures into a bar chart to see the "age" of the quotes.

 

TIA

 

JNelson_0-1696308821205.png

 

1 ACCEPTED SOLUTION
ChiragGarg2512
Super User
Super User

@JNelson , First create a month bucket[column] where there can be a classification of month partition. 

Ex. Column

Month Bucket =
var _diff = datediff([Date], today(), month) +1
return
Switch(true(),
_diff <=4 , "   1 - 4 Months",
_diff <=7 , "  5 - 7 Months",
_diff <=12 , " 8 - 12 Months",
">12 Months"
)
 
After creating the above column create a measure
sum = Calculate(SUMX(q4, q4[No. of Quotes]), FILTER(ALL(q4), q4[Month Bucket] = SELECTEDVALUE(q4[Month Bucket])))
 
Replace q4 with the table name.
 
ChiragGarg2512_0-1696335872010.png

 

View solution in original post

2 REPLIES 2
ChiragGarg2512
Super User
Super User

@JNelson , First create a month bucket[column] where there can be a classification of month partition. 

Ex. Column

Month Bucket =
var _diff = datediff([Date], today(), month) +1
return
Switch(true(),
_diff <=4 , "   1 - 4 Months",
_diff <=7 , "  5 - 7 Months",
_diff <=12 , " 8 - 12 Months",
">12 Months"
)
 
After creating the above column create a measure
sum = Calculate(SUMX(q4, q4[No. of Quotes]), FILTER(ALL(q4), q4[Month Bucket] = SELECTEDVALUE(q4[Month Bucket])))
 
Replace q4 with the table name.
 
ChiragGarg2512_0-1696335872010.png

 

Perfect! Thank you so much

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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