Forum Discussion
Martin_Bruwer
8 years agoFrequent Visitor
Populate a new calculated column with data from within the same table DAX or M?
Evening All, I have a scenario where I have appended three data tables together, each table has a field which the others need, but don't have naturally, for example a 'How Paid'. This field exist...
- 8 years ago
Try this column
Column = CALCULATE ( FIRSTNONBLANK ( Table1[How Paid], 1 ), ALLEXCEPT ( Table1, Table1[Transaction Code] ) )
Zubair_Muhammad
Community Champion
8 years ago
Try this column
Column =
CALCULATE (
FIRSTNONBLANK ( Table1[How Paid], 1 ),
ALLEXCEPT ( Table1, Table1[Transaction Code] )
)