This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi All,
I have Fact Data which has ticketno, stepnumber, score.
I have Fact Ticket which has ticketno, executive, ClosureDate.
Table1 and Table2 are related on ticketno - many to one
Table2 is related to dimdate on date->closedate - one to many.
I want to calculate the average of score from table1 by executive from filtered table 2 on closedate
I select a month from dimdate. Example - May 24
for current Month - May 24
for previous Month - Apr 24
for Prior 3 Months period - Jan, Feb, Mar 24
expected output
CurMonth Prev Month- Apr 24 Prior 3 Months - Jan-Mar 24
Exec 1 2.5 3.8
Exec 2 4.2 3.75
Exec 3 4.5 4.25
Measuers Built
1. CurrentMonth = ( this is working)
2. AverageScorePreviousMonth = ( this is working )
Appreciate any help
Cheers
CheenuSing
Hi @Anonymous ,
Have you solved your problem? If so, can you share your solution here and mark the correct answer as a standard answer to help other members find it faster? Thank you very much for your kind cooperation!
Best Regards,
Clara Gong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
You can try this expression.
Prior3MonthAverageRatings =
VAR SelectedMonthOffset = SELECTEDVALUE('Dim Date'[CurMonthOffset])
VAR StartOffset = SelectedMonthOffset - 4
VAR EndOffset = SelectedMonthOffset - 2
RETURN
CALCULATE(
[AverageScore],
REMOVEFILTERS('Dim Date'),
FILTER(
'Dim Date',
'Dim Date'[CurMonthOffset] > StartOffset &&
'Dim Date'[CurMonthOffset] <= EndOffset
)
)
If you don't get the results you expect, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you.
Best Regards,
Clara Gong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 3 |