This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi Everyone!
I have a data table like that:
| ID | HOURS | DATE | NAME |
| TLIONINOX-42 | 4 | 2016-10-10 | Jhon |
| TBROEMBPT-8 | 5 | 2016-10-10 | Mike |
| TRSSHAREPO-27 | 8,5 | 2016-11-9 | Louis |
| TOFREBOOT-51 | 3 | 2016-10-10 | Jhon |
| TMNTOF-767 | 2 | 2016-11-10 | Mike |
| TPINEIROEC-19 | 7 | 2016-11-10 | Louis |
| TMNTOF-809 | 1 | 2016-11-10 | Jhon |
I would like to add a new column with the % of work ocupation per month for every person.
Ocupation_% = HOURS/SUM(HOURS of this person on this month)
Something like this:
| ID | HOURS | DATE | NAME | OCUPATION_% |
| TLIONINOX-42 | 4 | 2016-10-10 | Jhon | 57% |
| TBROEMBPT-8 | 5 | 2016-10-10 | Mike | 100% |
| TRSSHAREPO-27 | 8,5 | 2016-11-9 | Louis | 55% |
| TOFREBOOT-51 | 3 | 2016-10-10 | Jhon | 43% |
| TMNTOF-767 | 2 | 2016-11-10 | Mike | 100% |
| TPINEIROEC-19 | 7 | 2016-11-10 | Louis | 45% |
| TMNTOF-809 | 1 | 2016-11-10 | Jhon | 100% |
I can't find the formula to do this to me.
Some help please....
Solved! Go to Solution.
This should work as a Column and a Measure
FORMULA =
DIVIDE (
CALCULATE ( SUM ( 'Table'[HOURS] ) ),
CALCULATE (
SUM ( 'Table'[HOURS] ),
ALLEXCEPT ( 'Table', 'Table'[NAME], Table[DATE].[Month] )
),
0
)
This should work as a Column and a Measure
FORMULA =
DIVIDE (
CALCULATE ( SUM ( 'Table'[HOURS] ) ),
CALCULATE (
SUM ( 'Table'[HOURS] ),
ALLEXCEPT ( 'Table', 'Table'[NAME], Table[DATE].[Month] )
),
0
)
Thanks for the solution @Sean.
It works fine, although the decimals don't adjust perfectly to 100% of the total, 1-2% above sometimes. But in general looks good.
Thanks!
Check out the May 2026 Power BI update to learn about new features.
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 |
|---|---|
| 31 | |
| 26 | |
| 23 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 62 | |
| 47 | |
| 28 | |
| 24 | |
| 21 |