Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
I have a measure that creates a score at the daily level for employees. I would like to sum the daily measure at the monthly level but when attempting to do so, it bases score on the monthly totals.
I dont know what I'm missing here???
Solved! Go to Solution.
Hi @Turf03 - I think this is a modeling issue. I just set this up and it just works. Let me walk you through what I did.
That gave me the above image that shows Bob with 2 points.
Here is my PBIX file if you want to play with it.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingYou are going to need to share some data using the links below, and show expected output. This has to do with the filter being applied, but without some info, it is vitually impossible to determine your specific issue.
How to get good help fast. Help us help you.
How to Get Your Question Answered Quickly
How to provide sample data in the Power BI Forum
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingBasically every day, depending on employee performance, they receive a points for meeting all of their targets.
The points column is a measure Points = If(Met Targets = "Yes",1,0)
Whats happening, if I create a table that is a monthly wrap up, looking at the total monthly column (Met Targets) and then giving them points based on that instead of the total month.
So based on the sample below, instead of 2 points for January, its giving the employee 1 point.
Date | Employee | Met Targets | Points |
1/1/2020 | Bob | Yes | 1 |
1/2/2020 | Bob | Yes | 1 |
1/3/2020 | Bob | No | 0 |
Hi @Turf03 - I think this is a modeling issue. I just set this up and it just works. Let me walk you through what I did.
That gave me the above image that shows Bob with 2 points.
Here is my PBIX file if you want to play with it.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI Reporting