Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have a question from this youtube video:
My question is:
What about if we have 5 parameters, Example:
[Query="EXEC sr_MERData '05/1/2019','12/31/2019','AAA','BBB','CCC'"]).
Do you know how I should deal with this? I just tried defining PARAMETER1 and added like: [Query="EXEC sr_MERData '05/1/2019','12/31/2019',&PARAMETER1,'BBB','CCC'", CreateNavigationProperties=false]). But it is not working.
Solved! Go to Solution.
Try:
Query="EXEC sr_MERData '05/1/2019','12/31/2019'," & PARAMETER1 & ",'BBB','CCC'"
Also if PARAMETER1 is a string or date, you will need
Query="EXEC sr_MERData '05/1/2019','12/31/2019','" & PARAMETER1 & "','BBB','CCC'"
Try:
Query="EXEC sr_MERData '05/1/2019','12/31/2019'," & PARAMETER1 & ",'BBB','CCC'"
Also if PARAMETER1 is a string or date, you will need
Query="EXEC sr_MERData '05/1/2019','12/31/2019','" & PARAMETER1 & "','BBB','CCC'"
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!