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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Sarencibia
Frequent Visitor

NEED HELP. Change a Measure into a Column

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!

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

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

View solution in original post

2 REPLIES 2
Sarencibia
Frequent Visitor

Many thanks!!! Thank you very much, it has worked perfectly! 💜

johnt75
Super User
Super User

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.