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.
Dear community,
I really hope you are able to help me solve this problem.
I have a Measure:
Measure=
Var a=
MAXX(
FILTER(ALL(Table),Table[Column1]= SELECTEDVALUE(Table[Column1]) ),
Table[Column2]
)
Var b=
MAXX(
FILTER(
ALL(Table),
Table[Column1]= SELECTEDVALUE(Table[Column1])
&& Table[Column2]= a
),
Table[Column3]
)
RETURN
b
And I need to modify it into a column. This is possible?
Somebody could help me? Thanks!
Solved! Go to Solution.
My Column =
VAR currentColumn1 = 'Table'[Column1]
VAR a =
MAXX (
FILTER ( ALL ( Table ), Table[Column1] = currentColumn1 ),
Table[Column2]
)
VAR b =
MAXX (
FILTER ( ALL ( Table ), Table[Column1] = currentColumn1 && Table[Column2] = a ),
Table[Column3]
)
RETURN
b
My Column =
VAR currentColumn1 = 'Table'[Column1]
VAR a =
MAXX (
FILTER ( ALL ( Table ), Table[Column1] = currentColumn1 ),
Table[Column2]
)
VAR b =
MAXX (
FILTER ( ALL ( Table ), Table[Column1] = currentColumn1 && Table[Column2] = a ),
Table[Column3]
)
RETURN
b
Many thanks!!! Thank you very much, it has worked perfectly! ๐
Check out the November 2025 Fabric update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!