Forum Discussion
Qianru221
8 years agoHelper II
Card Visualization shows the wrong information
Hi All I plotted a graph showing price changes of the company products against time. I added one product filter. I also added a Card visual, which shows the product name when one of the product...
- 8 years ago
Hi Qianru221
Try this MEASURE
= IF ( ISFILTERED ( TableName[Product] ), SELECTEDVALUE ( TableName[Product] ) )
- 8 years ago
Hi Qianru,
You'll need to use a measure here, and a formula like the following:
Selected Product = IF(HASONEVALUE(Table[Product]),VALUES(Table[Product]),"Multiple Products Selected!")
Hope that helps!
Zubair_Muhammad
8 years agoCommunity Champion
Hi Qianru221
Try this MEASURE
= IF ( ISFILTERED ( TableName[Product] ), SELECTEDVALUE ( TableName[Product] ) )