Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Get the first value of each month

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. 

Jeados_0-1656522126887.png

 

I would like to get only 1 value per month and sum it 

 

How can i do this ? 

 

 

Thanks 

 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@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]
    )

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

@Anonymous Thanks for the summarize measure ! It works perfectly 

Anonymous
Not applicable

@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]
    )
vapid128
Solution Specialist
Solution Specialist

sumx(values([Month], calculate(max([Allocated credit per month]))

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.