Forum Discussion

rbiswas's avatar
rbiswas
Frequent Visitor
9 years ago
Solved

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 ...
  • Dog's avatar
    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,