Forum Discussion
Add filter value into the report header
- 10 years ago
mroomi, Example below
Measure Defined a below:
Filtered Year = IF ( ISFILTERED(vw_Name[PSPStatus]), CONCATENATE("Document Count for the Fiscal Year ", (IF(HASONEVALUE(vw_Name[PSPStatus]), FIRSTNONBLANK(vw_Name[PSPStatus],"") ,""))), "Report Page is not Filtered by FY")
Table Data:
Table DataNo Values in Filter
Noticed that Long Text Visual is unable to take Measure as an input ...
Hope this helps!
Hi ankitpatira,
Is there a way to use the long text visual with the teaxt header? Currently the long text visual is reading value from atextual field in database.
I'm trying to display the following text
"Document Count for the '2014-2015'" where 201-2015 value will be changed according to the filter.
mroomi, Example below
Measure Defined a below:
Filtered Year = IF ( ISFILTERED(vw_Name[PSPStatus]), CONCATENATE("Document Count for the Fiscal Year ", (IF(HASONEVALUE(vw_Name[PSPStatus]), FIRSTNONBLANK(vw_Name[PSPStatus],"") ,""))), "Report Page is not Filtered by FY")
Table Data:
Table DataNo Values in Filter
Noticed that Long Text Visual is unable to take Measure as an input ...
Hope this helps!
- mroomi10 years agoHelper II
It, worked perfectly, really appreciate all of you guys help.