Forum Discussion
pani_victoria
2 years agoHelper III
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...
- 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
Ahmedx
2 years agoSuper User
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
partnerspani_victoria
2 years agoHelper III
But could you explain why it doesn't work ALLNOBLANKROW?