Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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
Many thanks!!! Thank you very much, it has worked perfectly! 💜
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
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |