Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello, I am new to power BI, I have the following columns
I need to create a DAX that will show me %of SDL1 in a 12 month rolling list for each Submission Type.
I have tried to create measures for this and divide, but I am not getting anywhere.
Any help would be appreciated.
Thank you.
Hi @vpzim
I don't quite understand what the 12-month rolling list looks like? Is it based on the selected date of the slicer?
Could you please provide some sample data and the expected results based on the sample data? That would be very helpful. How to provide sample data in the Power BI Forum - Microsoft Fabric Community Or show them as screenshots or pbix. Please remove any sensitive data in advance. If uploading pbix files please do not log into your account.
Here's a simple sample I created, I hope it helps.
Measure =
VAR _submitted = CALCULATE(COUNT('Table'[Submitted]), ALLEXCEPT('Table', 'Table'[Type]))
VAR _SDL1 = CALCULATE(COUNT('Table'[SDL1]), FILTER(ALLEXCEPT('Table', 'Table'[Type]), [SDL1] <> BLANK()))
RETURN
DIVIDE(_SDL1, _submitted)
Output:
Best Regards,
Yulia Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello Yulia,
My apologies, I don't think I was clear enough.
I am trying to make a 12month rolling metric - % of submissions that had an SD month over month. previously in excel when I did the calculations it was:
submitted in a month with an SD/submitted in a month (12 month metric)
I have a lot of sensitive data so can't send pbix, but this what the chart looked like in excel
I was able to get a calculation formed:
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 15 | |
| 8 | |
| 8 | |
| 8 |