Hi,
My requirement is to filter an embedded PowerBI Report using the ID of the logged in user.
For example the logged in users contactid is 00b12a73-dfe4-e911-a812-000d3a6aa9c8
I know i can get this using Liquid {{ user.id }}
The Embedded PowerBI Report liquid code is as follows
{% powerbi authentication_type:"powerbiembedded"ttps://app.powerbi.com/groups/5a979ca0-8340-4433-a53c-1f4159020084/reports/dbf40511-1b36-44f6-82ca-2f57524b1f4d/ReportSection?filter=cr0f3_Table/cr0f3_employeeid eq '00b12a73-dfe4-e911-a812-000d3a6aa9c8'" %}
How can I remove the hardcoded eq '00b12a73-dfe4-e911-a812-000d3a6aa9c8' and replace it with the results from {{ user.id }}?
Thanks in advance