The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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" based on the filter/ button.
Is there any chance to get a dynamic text result based on the selected filter/ button?
Solved! Go to Solution.
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
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
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?
User | Count |
---|---|
80 | |
78 | |
37 | |
34 | |
31 |
User | Count |
---|---|
93 | |
81 | |
60 | |
49 | |
49 |