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! It's time to submit your entry. Live now!
Hi,
In my paginated report, one of the parameters has input value as:
'abc,def,ghi'
but I want it to be parsed and make the parameter value as:
'abc','def','ghi'
So I can use these with IN
I tried
=Join(Split( Replace(Parameters!SiteIdList.Value, ",","','") ,"',"), ",")
But then powerbi adds escape character with my quotes making the output as :
'\'abc\',\'def\',\'ghi\'
which makes it useless.
Any suggestion
Solved! Go to Solution.
Yes, it was the data provider (Simba Odbc driver) that was escaping single qoute after I was replacing , with ','
Had to use expression in Query text to pass my complete query as a string which then worked.
Where are you seeing these escape characters? I just used the inner Replace() call from your example as the split then join seems redundant and I don't see any escaping going on. The top line below is the original parameter value and the bottom line is a text box using replace(). It possibly also depends how you are using this parameter are you concatenating it into your query with an expression or are you passing it into another parameter in the query? It could be the data provider doing the escaping to prevent SQL injection.
Yes, it was the data provider (Simba Odbc driver) that was escaping single qoute after I was replacing , with ','
Had to use expression in Query text to pass my complete query as a string which then worked.
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |