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
MSuser5
Helper II
Helper II

Based on date slicer- display current month and previous month names

Hi All,

 

I have calender[date] column which is being used in slicer hierarchy level based on selection it should display current month& year, previous month& year  in card label.

 

example screenshot :

if user selected in slicer  Jan'2023 then

current month_year = Jan 2023

pre month_Year = Dec 2022

 

Screenshot 2023-03-22 230622kk.png

 

Thanks in advance.

 

1 ACCEPTED SOLUTION
MohammadLoran25
Super User
Super User

Hi @MSuser5 ,

Follow these steps:

 

1-Create a calculated column as:

YearMonth = CONVERT(FORMAT(DateTable[Date],"YYYYMM"),INTEGER)
 
2-Create another calculated column as:
YearMonthOrder = RANKX (
    DateTable,
    DateTable[YearMonth],
    ,
    ASC,
    DENSE
)
 
3-CurrentMonth Measure is as below:
CurrentMonth =
CALCULATE (
    MIN ( DateTable[MonthName] ),
    FILTER (
        ALL ( DateTable ),
        DateTable[YearMonthOrder] = MAX ( DateTable[YearMonthOrder] )
    )
)
 
4-PrevMonth Measure is:
PrevMonth =
CALCULATE (
    MIN ( DateTable[MonthName] ),
    FILTER (
        ALL ( DateTable ),
        DateTable[YearMonthOrder]
            MAX ( DateTable[YearMonthOrder] ) - 1
    )
)
 
If this answer solves your problem, please mark it as an accepted solution so the others would find what they need easier.
Regards,
Loran

View solution in original post

2 REPLIES 2
MohammadLoran25
Super User
Super User

Hi @MSuser5 ,

Follow these steps:

 

1-Create a calculated column as:

YearMonth = CONVERT(FORMAT(DateTable[Date],"YYYYMM"),INTEGER)
 
2-Create another calculated column as:
YearMonthOrder = RANKX (
    DateTable,
    DateTable[YearMonth],
    ,
    ASC,
    DENSE
)
 
3-CurrentMonth Measure is as below:
CurrentMonth =
CALCULATE (
    MIN ( DateTable[MonthName] ),
    FILTER (
        ALL ( DateTable ),
        DateTable[YearMonthOrder] = MAX ( DateTable[YearMonthOrder] )
    )
)
 
4-PrevMonth Measure is:
PrevMonth =
CALCULATE (
    MIN ( DateTable[MonthName] ),
    FILTER (
        ALL ( DateTable ),
        DateTable[YearMonthOrder]
            MAX ( DateTable[YearMonthOrder] ) - 1
    )
)
 
If this answer solves your problem, please mark it as an accepted solution so the others would find what they need easier.
Regards,
Loran

@MohammadLoran25 ,

 

Thank you so much it's working as expected.

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