Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all,
I have a card componant that show the credits available for each user by month.
For exemple, each month, i have 8 credits allocated. But the available credits information are on a reservation table. It makes the allocated credit per month duplicated for each reservation.
I would like to SUM the allocated credits into a Card componant by Month but with a distinct like the first row of each month.
Here's an exemple of what i need.
I would like to get only 1 value per month and sum it
How can i do this ?
Thanks
Solved! Go to Solution.
@Anonymous , I believe this measure will do the trick:
Monthly Allocated Credits =
SUMX(
SUMMARIZE(
'YourTable'
,'YourTable'[Month]
,'YourTable'[Allocated Credit Per Month]
)
,'YourTable'[Allocated Credit Per Month]
)
@Anonymous Thanks for the summarize measure ! It works perfectly
@Anonymous , I believe this measure will do the trick:
Monthly Allocated Credits =
SUMX(
SUMMARIZE(
'YourTable'
,'YourTable'[Month]
,'YourTable'[Allocated Credit Per Month]
)
,'YourTable'[Allocated Credit Per Month]
)
sumx(values([Month], calculate(max([Allocated credit per month]))
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 6 | |
| 5 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 21 | |
| 10 | |
| 8 | |
| 8 |