我正在尝试使用MS动态客户门户上的液体标签动态过滤我的嵌入式Power BI报告。
我已将身份验证类型从“ powerbiembedded
”更改为“ AAD
”,并且过滤按预期进行。以及删除和添加与号的符号,即“&”
{% capture pbi_path %} https://app.powerbi.com/groups/GUID/reports/GUID/ReportSection?&$filter=accounts/name+eq+ '{{user.parentcustomerid.name}}' {% endcapture %}
{% powerbi authentication_type:"powerbiembedded" path:pbi_path %}
我希望过滤能够像身份验证类型为“ AAD
”时那样工作,即显示并过滤报告。但是,所有发生的情况是报表显示时没有过滤。
答案 0 :(得分:0)
只需删除&$
因此您的代码应为:
{%capture pbi_path%} https://app.powerbi.com/groups/GUID/reports/GUID/ReportSection?filter=accounts/name+eq+'{{user.parentcustomerid.name}}'{%endcapture%} {%powerbi authentication_type:“ powerbiembedded”路径:pbi_path%}