Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi,
I have an issue with a measure I created to display the active filters. In the report, the measure is displayed in a card. I split each active filters with a carriage return and I do so by using UNICHAR(10). It works in Power BI Desktop, but when I upload the file in report server, it does not work anymore.
Here is the measure:
_Active filters_ =
"Filters Applied:"
&IF(ISFILTERED(Query1[Portfolio Name Level 2]),
UNICHAR(10)&"- Portfolio Name Level 2: "& FILTERS(Query1[Portfolio Name Level 2]),"")
&IF(ISFILTERED(Query1[Portfolio Name Level 3]),
UNICHAR(10)&"- Portfolio Name Level 3: "& FILTERS(Query1[Portfolio Name Level 3]),"")
&IF(ISFILTERED(Query1[Portfolio Name Level 4]),
UNICHAR(10)&"- Portfolio Name Level 4: "& FILTERS(Query1[Portfolio Name Level 4]),"")
&IF(ISFILTERED(Query1[Extended Issuer]),
UNICHAR(10)&"- Extended Issuer: "& FILTERS(Query1[Extended Issuer]),"")
Thank you for helping me. I am open to suggestions where I can accomplish the same thing, but with a different visual.
Hi, same happened to me today. Did you manage to solve this issue ?