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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Jacob1832
Frequent Visitor

Rolling 4 week average conversion rate

I am trying to create a rolling 4 week average conversion rate. The column LTA is the conversion rate and equals (Appts/Leads). RIght now, LTA is week by week. I need to create a new column that is a 4 rolling conversion rate. 
Here is the data.

Jacob1832_2-1654556785858.png

 

So if we started at the bottom, the RollingAvg for May 29 would be (19+19+32+38)/(25+45+60+82) = 50.943 %

For the week may 22, the numbers would roll back one week, so itd be (19+32+38+0)/(45+60+82+117) = 29.276 %

Help would be appricated.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Jacob1832 , Try a new column like

 

new column =
var _date = [Week]
return
divide(sumx(filter(Table, [Week] > _date -28 && [Week]<= _date ),[Appts]),sumx(filter(Table, [Week] > _date -28 && [Week]<= _date ),[leads]))

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

2 REPLIES 2
amitchandak
Super User
Super User

@Jacob1832 , Try a new column like

 

new column =
var _date = [Week]
return
divide(sumx(filter(Table, [Week] > _date -28 && [Week]<= _date ),[Appts]),sumx(filter(Table, [Week] > _date -28 && [Week]<= _date ),[leads]))

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

How would i adjust the calculation if i had a single number (Actuals) and a grouping variable (state)?
The rolling average would still have the same numerator, the denominator would now be 4 since its a 4 week rolling average and not a conversion rate. How would I incorporate the group of state?

Jacob1832_0-1654637321490.png

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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.