Forum Discussion

pani_victoria's avatar
pani_victoria
Helper III
2 years ago
Solved

blank row

Good afternoon, colleagues! I would like to combine column values from 3 tables into a separate table. I use Counterparties = var A01 = ALLNOBLANKROW('Receipts'[Counterparty]) var A02 = AL...
  • Ahmedx's avatar
    2 years ago

    pls try this

    Counterparties =
    var A01 = ALLNOBLANKROW('Receipts'[Counterparty])
    var A02 = ALLNOBLANKROW('Payment orders'[Counterparty])
    var A03 = ALLNOBLANKROW('Accounting for responsible persons'[Counterparty])
    VAR partners = DISTINCT(FILTER(UNION(A01, A02, A03),[Counterparty]<> BLANK()))
    return
    partners