Forum Discussion
joshua1990
6 years agoPost Prodigy
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...
- 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
TomMartens
6 years agoSuper User
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
- Kenha093 years agoMicrosoft Employee
Hi, Tom!
I'm very newbe here and have similar question. I want to have multiple filters that create a tittle, as the previous example. Lets say I select a region, a store, a vendor and a product. I want the output to be: "US, NY03, JohnSmith, sku111000"
With the meassure you pasted could be possible? as& IF(HASONEVALUE('Store'[StoreID], 'Employees' [vendor_name], 'Catalog' [SKU_number])or something like this?