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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Rimple_Manni
Frequent Visitor

Matrix issues

Rimple_Manni_0-1675814671465.png

Hi Everyone, I'm struggling in this code, if anyone can help please - I want to fetch only last values from different months and show in a matrix. For example -

 
 
Jan - $4,724,484.1
 
Feb - $6,321,244.7

 

 

5 REPLIES 5
FreemanZ
Super User
Super User

hi @Rimple_Manni 

try like

1) add a column like:

MONTH = FORMAT([Date], "mmm")

 

2) plot a visual with the month column and a measure like:

LastRevenue=

VAR _monthtable =

FILTER(

        ALL(TableName),

        MONTH([Date]) = MONTH(MAX([Date]))

)

VAR _lastdate =

MAXX(

    _monthtable,

    [Date]

)

RETURN

MAXX(

    FILTER(

        _monthtable, 

        TableName[Date] = _lastdate

    ),

    TableName[Online Revenue]

)

@gfreeman thanks for the response, I have tried that however it's throwing an error. Please help me understand this

Rimple_Manni_0-1675816635391.png

 

hi @Rimple_Manni 

I have changed earlier to max actually. try it

@FreemanZ hmm, it still shows only latest one and not filter using month

Rimple_Manni_0-1675817107659.png

 

hi @Rimple_Manni 

strangely enough, i verified with a simplified dataset like:

FreemanZ_0-1675819312777.png

 

it worked like:

FreemanZ_1-1675819343130.png

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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