The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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]))
User | Count |
---|---|
26 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
31 | |
12 | |
10 | |
10 | |
9 |