tappingfoot
New Member
- Joined
- Jul 7, 2021
- Messages
- 2
- Office Version
- 365
- Platform
- Windows
I have the following dax measure in the value area of a pivot table to return a concatenated list of unique values from a table:
There are instances where 0 is returned as the value because no corresponding values exists for that row in the source data.
Is it possible to either replace with "-" or preferrably hide or filter out these rows entirely.
Any ideas?
SQL:
=CONCATENATEX(
Values(
Table1[Column2]
),
Table1[Column2],", "
)
There are instances where 0 is returned as the value because no corresponding values exists for that row in the source data.
Is it possible to either replace with "-" or preferrably hide or filter out these rows entirely.
Any ideas?