Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon'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.
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
)
Solved! Go to Solution.
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
)
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
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
132 | |
76 | |
53 | |
38 | |
37 |
User | Count |
---|---|
200 | |
81 | |
70 | |
55 | |
44 |