Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.
Hello I have two files
One file contains the list of all the weeks
weeks |
01/01/2024 - 01/07/2024 |
01/08/2024 - 01/15/2024 |
01/16/2024 - 01/23/2024 |
01/24/2024 - 01/31/2024 |
and the another file contain the time entried
Name | ID | Week | Sun | Mon | Tue | Wed | Thur | Fri | Sat |
Sonali | 1111 | 01/01/2024 - 01/07/2024 | 1 | 3 | 4 | 5 | 2 | 4 | 0 |
Sonali | 1111 | 01/08/2024 - 01/15/2024 | 9 | 3 | 2 | 5 | 1 | 2 | 6 |
the need is to get the weeks of an user which is not reported in the list as below
name | id | date | sun | mon | tue | wed | thur | fri | sat |
sonali | 1111 | 01/16/2024 - 01/23/2024 | |||||||
sonali | 1111 | 01/24/2024 - 01/31/2024 |
Solved! Go to Solution.
@rajendraongole1 Thanks for your contribution on this thread.
Hi @sonalisaha2310 ,
I created a sample pbix file(see the attachment), please check if that is what you want.
1. Unpivot these weekday columns in Power Query Editor
= Table.Unpivot(#"Changed Type", {"Sun", "Mon", "Tue", "Wed", "Thur", "Fri", "Sat"}, "Weekday", "Value")
2. Create a measure as below
Measure = CALCULATE(SUM('Data'[Value]),FILTER('Data','Data'[Week] =SELECTEDVALUE('Weeks'[weeks])))
3. Create visuals
Best Regards
Hi @sonalisaha2310 - create a calculated table as below
Hope it works
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
Hello @rajendraongole1 , i am getting an error as
except doesn't support joining acolumn of type text with another column of type number
@rajendraongole1 Thanks for your contribution on this thread.
Hi @sonalisaha2310 ,
I created a sample pbix file(see the attachment), please check if that is what you want.
1. Unpivot these weekday columns in Power Query Editor
= Table.Unpivot(#"Changed Type", {"Sun", "Mon", "Tue", "Wed", "Thur", "Fri", "Sat"}, "Weekday", "Value")
2. Create a measure as below
Measure = CALCULATE(SUM('Data'[Value]),FILTER('Data','Data'[Week] =SELECTEDVALUE('Weeks'[weeks])))
3. Create visuals
Best Regards
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
74 | |
70 | |
70 | |
45 | |
41 |
User | Count |
---|---|
48 | |
47 | |
29 | |
28 | |
28 |