Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I normally use the below DAX to retrieve a value from a pevious row, which works fine if the MAX value is a number. But what do I do if I am trying to get a value from a column that is a text or boolean type?
=
CALCULATE
(
MAX
(
'Sample Data'[Sample Taken]
),
FILTER
(
'Sample Data',
'Sample Data'[Sample Date] < EARLIER
(
'Sample Data'[Sample Date]
)
&& 'Sample Data'[Unit Number] = EARLIER
(
'Sample Data'[Unit Number]
)
)
)
Hi @justlogmein ,
Has this question been solved? If you have solved it, you can post your solution here. If any of the responses were helpful to you, please consider marking them as solutions, which will help more users find similar problems faster. If the question is not solved, please feel free to let us know. Thanks in advance!
Best Regards,
Gao
Community Support Team
Hi @justlogmein
please use
=
VAR CurrentDate = 'Sample Data'[Sample Date]
VAR CurrentUnitTable =
CALCULATETABLE (
'Sample Data',
ALLEXCEPT ( 'Sample Data', 'Sample Data'[Unit Number] )
)
VAR DatesBeforeTable =
FILTER ( CurrentUnitTable, 'Sample Data'[Sample Date] < CurrentDate )
VAR PreviousDate =
MAXX ( DatesBeforeTable, 'Sample Data'[Sample Date] )
RETURN
MAXX (
FILTER ( DatesBeforeTable, 'Sample Data'[Sample Date] = PreviousDate ),
'Sample Data'[Sample Taken]
)
Unfortunately I get an error.
Please try
=
VAR CurrentDate = 'Sample Data'[Sample Date]
VAR CurrentUnitTable =
CALCULATETABLE (
'Sample Data',
ALLEXCEPT ( 'Sample Data', 'Sample Data'[Unit Number] )
)
VAR DatesBeforeTable =
FILTER ( CurrentUnitTable, 'Sample Data'[Sample Date] < CurrentDate )
VAR PreviousDate =
MAXX ( DatesBeforeTable, 'Sample Data'[Sample Date] )
RETURN
SELECTCOLUMNS (
FILTER ( DatesBeforeTable, 'Sample Data'[Sample Date] = PreviousDate ),
"@Taken", 'Sample Data'[Sample Taken]
)
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
6 | |
3 | |
3 | |
3 |
User | Count |
---|---|
13 | |
11 | |
9 | |
8 | |
8 |