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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
mhsieh
Helper II
Helper II

KPI card: want it to show the current Quarter value, instead of Month.

Hi everyone,

I would like the KPI card to show the most current quarter value. Here (see attached screenshot) my KPI card is showing the most current month value, how do I make it to show the most current quarter value instead? I imagine I will need to write a DAX calculation, but I don't know how. If anyone could teach and help me, I would greatly appreciate it!

 

850 = 
IF(
    ISBLANK(
        SUM(Retailer_Compliance[VOL_850])
    ),
    0,
    SUM(Retailer_Compliance[VOL_850]
    )
)

 

 

855 = 
IF(
    ISBLANK(
        SUM(Retailer_Compliance[VOL_855])
    ),
    0,
    SUM(Retailer_Compliance[VOL_855]
    )
)
855_TO_850 = 
IFERROR(
    [855] / [850],
    0
)

 

mhsieh_0-1660241035930.png

1 ACCEPTED SOLUTION
mhsieh
Helper II
Helper II

Hi everyone,

I was able to resolve it myself by calculating the 850_QTD, 855_QTD,  855_TO_850_QTD

850_QTD = 
CALCULATE(
    [850],
    DATESQTD(
        'Calendar Lookup'[Start of Month]
    )
)
855_QTD = 
CALCULATE(
    [855],
    DATESQTD(
        'Calendar Lookup'[Start of Month]
    )
)
855_TO_850_QTD = 
IFERROR(
    [855_QTD] / [850_QTD],
    0
)



View solution in original post

1 REPLY 1
mhsieh
Helper II
Helper II

Hi everyone,

I was able to resolve it myself by calculating the 850_QTD, 855_QTD,  855_TO_850_QTD

850_QTD = 
CALCULATE(
    [850],
    DATESQTD(
        'Calendar Lookup'[Start of Month]
    )
)
855_QTD = 
CALCULATE(
    [855],
    DATESQTD(
        'Calendar Lookup'[Start of Month]
    )
)
855_TO_850_QTD = 
IFERROR(
    [855_QTD] / [850_QTD],
    0
)



Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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