Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello, working on first Power BI report and having issues.
The objective is to determine for each Engineer/Resource how many hours and days they are available to work in a calendar month individually and as a overall Team
Table Working Dates is filtered to show working days in the current month
Table Resources is filtered to one Team consisting of 5 Resources.
There is no relationship between them as I expect values to be duplicted per Resource / per row.
This matix is showing each Resource has 21 days / 168 hours in a month - this is correct.
The issue is the total, I would like to see 105 days / 840 hours.
The Formulas I have tried are:
Solved! Go to Solution.
Hi @_bs_
Your working days and working hours calculations need to be evaluated for each distinct engineer value and then summed up. To achieve this, try these measures:
SUMX ( VALUES ( data[engineer] ), [working days formula] )
or
SUMX (
ADDCOLUMNS (
SUMMARIZE ( data, data[engineer] ),
"@value", [working days formula]
),
[@value]
)
Proud to be a Super User!
Hi @_bs_
Your working days and working hours calculations need to be evaluated for each distinct engineer value and then summed up. To achieve this, try these measures:
SUMX ( VALUES ( data[engineer] ), [working days formula] )
or
SUMX (
ADDCOLUMNS (
SUMMARIZE ( data, data[engineer] ),
"@value", [working days formula]
),
[@value]
)
Proud to be a Super User!
User | Count |
---|---|
114 | |
73 | |
56 | |
48 | |
44 |
User | Count |
---|---|
171 | |
118 | |
60 | |
59 | |
54 |