The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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 ?