Solved! Go to Solution.
@zyc , Assuming this is a new column, I tried the same on my data, a new column. without all
Column = CONCATENATEX(summarize(FILTER(Sales,Sales[Item ID] = 'Item'[Item Id]), Sales[City Id]),[City Id], ",")
@zyc provide sample data and expected output to accelerate response
Proud to be a Super User!
New Animated Dashboard: Sales Calendar
@zyc , try like
CONCATENATEX (
summarize(FILTER (
ALL ( Table2 ),
Table2[Column1] = cvShipments[Column1]
),
Table2[Column2]),
", "
)
@amitchandak Hi there, thanks for commenting. I tried but the output that I've obtained is "," and ", ,"
Seems like only commas are being concatenated here...
@zyc , Assuming this is a new column, I tried the same on my data, a new column. without all
Column = CONCATENATEX(summarize(FILTER(Sales,Sales[Item ID] = 'Item'[Item Id]), Sales[City Id]),[City Id], ",")
@amitchandak This works great, thanks. Think in the first comment you provided, there was a missing Table2[Column2] as part of the CONCATENATEX formula, hence the error.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Put your data visualization and design skills to the test! This exciting challenge is happening now through May 31st!
User | Count |
---|---|
134 | |
69 | |
36 | |
29 | |
22 |
User | Count |
---|---|
143 | |
77 | |
41 | |
37 | |
23 |