Forum Discussion
Anonymous
8 years agoNot applicable
Assign unique identifier based on multiple attributes
Hello, I have a set of data that describes case work coming into a support organization, including who owns it during different points over the case lifecycle. What I need to do is describe each...
- 8 years ago
Hi Anonymous
This calculated table might be close.
Table = VAR DistinctValues = SUMMARIZECOLUMNS('Table1'[Case],'Table1'[Team]) VAR Final = SUMMARIZECOLUMNS('Table1'[Case]) RETURN ADDCOLUMNS( Final , "Group" , CONCATENATEX( FILTER(DistinctValues,[Case] = EARLIER('Table1'[Case])), [Team],","))
Ashish_Mathur
Super User
8 years ago- Phil_Seamark8 years ago
Microsoft Employee