Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Good morning,
I'm using this calculation to obtain the %churn QoQ.
I have two columns ROLLING_Q which shows the quarters and SEG_MONTH which shows the end of the months of ROLLING_Q.
But the %Churn QoQ calculation disappears if I use ROLLING_Q in the visual elements.
Could you help me solve this, as I want to use the ROLLING_Q field instead of SEG_MONTH?
Solved! Go to Solution.
Hi,
Share the download link of the PBI file.
Hi @3508026 ,
As we haven’t heard back from you, we wanted to kindly follow up to check if the suggestions provided by the community members for the issue worked. Please feel free to contact us if you have any further questions.
Thanks and regards
Hi @3508026
May I check if this issue has been resolved? If not, Please feel free to accept the request we raised to access your data.
Thank you
Hi @3508026 ,
I wanted to check if you had the opportunity to check the access requests me and the community members raised to reproduce your exact scenario. Please feel free to contact us if you have any further questions.
Thank you.
Access Denied message.
Hi,
I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
One of ways is to create a separate calendar table and create a relationship with the fact table.
And, I tried to use OFFSET DAX function in the measure.
OFFSET function (DAX) - DAX | Microsoft Learn
Lost Decline customers count: =
CALCULATE (
SUM ( data[customers_count] ),
'status'[bat_status] IN { "lost", "decline" }
)
prev: =
CALCULATE (
[Lost Decline customers count:],
OFFSET (
-1,
ALL ( 'calendar'[Rolling_Q], 'calendar'[SEG_MONTH] ),
ORDERBY ( 'calendar'[SEG_MONTH], ASC )
)
)
QoQ: =
DIVIDE([Lost Decline customers count:] - [prev:], [prev:])
Thank you @Jihwan_Kim
My table does not contain a date field to display the months included in ROLLING_Q; the only field related to a date is SEG_MONTH. I previously created a table to assign those two and create a relationship so that I could use ROLLING_Q, but it did not work.
I have shared the file; could you take a look at it?. Here is the link:
PBI_Rolling_Q
Hi,
Share the download link of the PBI file.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.