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

Shape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.

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
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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