Power Bi 嵌入式参数 - 列名称中的 Space
Power Bi Embedded Parameter - Space in Column Name
我正在使用嵌入在我的应用程序中的 Power BI 仪表板。所以我在下面的结构
中从URL传递一些参数给它
https://app.powerbi.com/reportEmbed?reportId=MyReportId&groupId=ReportGroupId&autoAuth=true&$filter=User/User
id+eq+'1234'
我在这里面临的问题是列名 User Id 中有一个 space,因此过滤器没有按预期工作。我的数据源是 SSAS 多维数据集,我无权编辑它。
是否有其他解决方案?
提前致谢
根据official documentation,特殊字符和空格必须用_xxxx_
转义,其中xxxx
是字符的unicode值。所以 User Id
必须转义为 User_0020_Id
.
我正在使用嵌入在我的应用程序中的 Power BI 仪表板。所以我在下面的结构
中从URL传递一些参数给它https://app.powerbi.com/reportEmbed?reportId=MyReportId&groupId=ReportGroupId&autoAuth=true&$filter=User/User id+eq+'1234'
我在这里面临的问题是列名 User Id 中有一个 space,因此过滤器没有按预期工作。我的数据源是 SSAS 多维数据集,我无权编辑它。
是否有其他解决方案?
提前致谢
根据official documentation,特殊字符和空格必须用_xxxx_
转义,其中xxxx
是字符的unicode值。所以 User Id
必须转义为 User_0020_Id
.