Forum Discussion
rbiswas
9 years agoFrequent Visitor
comments in power BI
Hi all, I facing an issue in implementing comment in power BI. Suppose , i have source table with comments by country. In the Report , I need to have a textbox/ card having the ...
- 9 years ago
best to create a New Measure which looks for a single value being returned once filtered.
ShowComment:=
IF (
HASONEVALUE ('TableName'[Comments] ),
VALUES ( 'TableName'[Comments]),
"Generic Comment"
)wasn't sure of your table name so that will just need replacing,