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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
tecumseh
Resolver I
Resolver I

Measure Results Off By 1 Year

Hi all,

My Measure is returning 12/31/2025 when I use 

IN ALLSELECTED('Date Table'[QQYY])

I double checked the Slicer. The selected values are Q1 - Q4 for 2024
If I hard code the values in the slicer I get the correct max date 12/31/2024.

What am I doing wrong that is returning 12/31/2025?

Thanks,
-w

KPI Max Date 15M = 
VAR __tbl_Dates =
    SELECTCOLUMNS(
        'Date Table',
        "Date",'Date Table'[Date],
        "Quarter", 'Date Table'[QQYY]
    )
VAR __tbl_Dates_Filtered =
FILTER(
    __tbl_Dates,
    [Quarter] IN ALLSELECTED('Date Table'[QQYY])
)
VAR __Max_Date =
MAXX(__tbl_Dates_Filtered,[Date])
RETURN
__Max_Date


1 ACCEPTED SOLUTION
rajendraongole1
Super User
Super User

Hi @tecumseh -Try checking if your Date Table includes any dates for 2025. If it does, and they aren't filtered out properly, they might be affecting your result.

can you check with below modified measure

KPI Max Date 15M =
VAR __tbl_Dates =
SELECTCOLUMNS(
'Date Table',
"Date",'Date Table'[Date],
"Quarter", 'Date Table'[QQYY]
)
VAR __Selected_Years =
VALUES('Date Table'[Year]) -- for year in the selection
VAR __tbl_Dates_Filtered =
FILTER(
__tbl_Dates,
[Quarter] IN ALLSELECTED('Date Table'[QQYY]) &&
YEAR([Date]) IN __Selected_Years -- Filter only the selected year(s)
)
VAR __Max_Date =
MAXX(__tbl_Dates_Filtered,[Date])
RETURN
__Max_Date

 

I hope this works





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

3 REPLIES 3
tecumseh
Resolver I
Resolver I

Thanks @rajendraongole1 ,

That resolved it.

Thanks!
-w

Happy to Help @tecumseh  !!

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





rajendraongole1
Super User
Super User

Hi @tecumseh -Try checking if your Date Table includes any dates for 2025. If it does, and they aren't filtered out properly, they might be affecting your result.

can you check with below modified measure

KPI Max Date 15M =
VAR __tbl_Dates =
SELECTCOLUMNS(
'Date Table',
"Date",'Date Table'[Date],
"Quarter", 'Date Table'[QQYY]
)
VAR __Selected_Years =
VALUES('Date Table'[Year]) -- for year in the selection
VAR __tbl_Dates_Filtered =
FILTER(
__tbl_Dates,
[Quarter] IN ALLSELECTED('Date Table'[QQYY]) &&
YEAR([Date]) IN __Selected_Years -- Filter only the selected year(s)
)
VAR __Max_Date =
MAXX(__tbl_Dates_Filtered,[Date])
RETURN
__Max_Date

 

I hope this works





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





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.

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! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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