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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

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