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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
privledged_test
New Member

Use Measure to create Calculated Column

In the screenshot of dataset below I'm using following measure to assign values in line 1 to remove any duplicates. The measure calculates correctly but how do I bring measure value in the same row in dataset so I can see Line 1 as 800 and then all subsequent lines as 0 

 

privledged_test_2-1747747336412.png

 

MiscLine =
VAR CurrentLine = SELECTEDVALUE('2025'''[Line#])
VAR FirstLine =
CALCULATE(
        MIN('2025'''[Line#]),
        ALLEXCEPT('2025''','2025'''[Order Total])
)
RETURN
    IF(CurrentLine = FirstLine, MAX('2025'''[value.OrderHed_DocTotalMisc]),0)

 

1 ACCEPTED SOLUTION
pankajnamekar25
Super User
Super User

Hello @privledged_test 

 

try this DAX for column

MiscLineColumn =

VAR CurrentOrder = '2025'[Order]

VAR CurrentLine = '2025'[Line#]

VAR FirstLine =

    CALCULATE(

        MIN('2025'[Line#]),

        FILTER(

            '2025',

            '2025'[Order] = CurrentOrder

        )

    )

VAR MiscValue =

    CALCULATE(

        MAX('2025'[value.OrderHed_DocTotalMisc]),

        FILTER(

            '2025',

            '2025'[Order] = CurrentOrder

        )

    )

RETURN

    IF(CurrentLine = FirstLine, MiscValue, 0)

Thanks,
 Pankaj Namekar | LinkedIn

If this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.

View solution in original post

2 REPLIES 2
privledged_test
New Member

This works great, thanks a lot!

pankajnamekar25
Super User
Super User

Hello @privledged_test 

 

try this DAX for column

MiscLineColumn =

VAR CurrentOrder = '2025'[Order]

VAR CurrentLine = '2025'[Line#]

VAR FirstLine =

    CALCULATE(

        MIN('2025'[Line#]),

        FILTER(

            '2025',

            '2025'[Order] = CurrentOrder

        )

    )

VAR MiscValue =

    CALCULATE(

        MAX('2025'[value.OrderHed_DocTotalMisc]),

        FILTER(

            '2025',

            '2025'[Order] = CurrentOrder

        )

    )

RETURN

    IF(CurrentLine = FirstLine, MiscValue, 0)

Thanks,
 Pankaj Namekar | LinkedIn

If this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.