Forum Discussion

joshua1990's avatar
joshua1990
Post Prodigy
6 years ago
Solved

Text output based on filter

Hello everyone! I have a title for one of our Reports that says something like: Overall Report I would like to add something like "Overal Report for this week" or Overall Report for this month" ba...
  • TomMartens's avatar
    6 years ago

    Hey joshua1990 ,

     

    I created this measure:

    ttl add selected filter to report = 
    "The report title with selected filter value: "
     & IF(HASONEVALUE('DimDate'[CalendarMonthLabel]) , MAX('DimDate'[CalendarMonthLabel]) , "...")

    And then added it to the title of a txt box:

    I select the measure and the TXT-Box will look like this:

    Hopefully, this is what you are looking for.

     

    Regards,
    Tom