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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
admin11
Memorable Member
Memorable Member

How to make my card display 2019 when i click year = 2019 ?

Hi All

 
Now i have below expression working fine , it will display April 2021.
 
Month Last =
FORMAT(DATE(YEAR(TODAY()),MONTH(TODAY())-1,DAY(TODAY())),"mmm-yyyy")
 
May i know how to change the above expression , so that when i click on year=2018 , the card will display 2018 ?
1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi @admin11  , 

 

You could  change YEAR(TODAY()) to the value of the slicer,Here can use MAX() ,as follows:

_Month last =
FORMAT (
    DATE ( MAX ( 'Date'[YEAR2] ), MONTH ( TODAY () ) - 1, DAY ( TODAY () ) ),
    "mmm-yyyy")

The final output is shown below:

v-yalanwu-msft_0-1621936314322.jpegv-yalanwu-msft_1-1621936314323.jpeg

 

Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.  

View solution in original post

3 REPLIES 3
v-yalanwu-msft
Community Support
Community Support

Hi @admin11  , 

 

You could  change YEAR(TODAY()) to the value of the slicer,Here can use MAX() ,as follows:

_Month last =
FORMAT (
    DATE ( MAX ( 'Date'[YEAR2] ), MONTH ( TODAY () ) - 1, DAY ( TODAY () ) ),
    "mmm-yyyy")

The final output is shown below:

v-yalanwu-msft_0-1621936314322.jpegv-yalanwu-msft_1-1621936314323.jpeg

 

Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.  

Fowmy
Super User
Super User

@admin11 

Try

Month Last =

FORMAT(
    DATE(
        YEAR( SELECTEDVALUE(DATE[YEAR])),
        MONTH(TODAY())-1,
        DAY(TODAY()))
    ,
    "mmm-yyyy"
)
Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

admin11
Memorable Member
Memorable Member

@Fowmy 

i use your expression , when i select year = 2017 , but it display 1905

admin11_0-1621776843980.png

 

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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