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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors