DAX Tribe,
I have a need to build a view for a form which concatenates across rows.
InventJournalTable has multiple InventJournalTrans.
We want to show the InventDimId and ToInventDimId (From warehouse & To warehouse) for the header row: InventJournalTable.
If there are two InventJournalTrans records, each with different warehouses specified (as dimensions) we want to produce a single record which has the mentioned fields assembled.
JournalID = 1
Trans record #1
InventDimId = "AA"
ToInventDimId = "BB"
Trans record #2
InventDimId = "CC"
ToInventDimId = "DD"
Resulting View record:
1, "AA,BB", "CC,DD"
I realize that I'll have to write code to do this. But I'd really like to have a VIEW at the end of this, containing the records, so I can join it to a Form's datasources for presentation.
Where or how to add the code is basically my question.
Any clues would be appreciated.
Thanks, Dave Cline
*This post is locked for comments