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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
MSuser5
Helper III
Helper III

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
Solution Sage
Solution Sage

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
Solution Sage
Solution Sage

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
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors