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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
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
Solved! Go to Solution.
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.
This works great, thanks a lot!
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.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 65 | |
| 50 | |
| 42 | |
| 23 | |
| 21 |
| User | Count |
|---|---|
| 139 | |
| 116 | |
| 53 | |
| 37 | |
| 31 |