Forum Discussion
BernardesV
2 years agoFrequent Visitor
Cross-filtering multiple table visuals into one line chart
Hello everyone, I have a project where I use only one source, having the parameters "Product", "Sales", "Date", and "Price". I'm trying to create two Tables (visuals) and my wish is to be able t...
VN999
2 years agoResolver I
Try with this below measure to solve combine productselection:
CombinedProductSelection =
IF (
ISFILTERED('Product'[Product Name]),
SELECTEDVALUE('Product'[Product Name]),
CONCATENATEX(
VALUES('Product'[Product Name]),
'Product'[Product Name],
", "
)
)