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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I am having a problem passing parameters to a url when the Column name has a space in it. But when there is no space in the column name there is no issue. Please advise ?filter=Tablename/Column name eq 'Passed Value' is the format I am using
Variables
Tablename = RDash
Column1 = Vendor
Column2 = Vendor Name
?filter=RDash/Vendor eq 'My Company' this works
?filter=RDash/Vendor Name eq 'My Company' this doesn't works
TIA
Any advice? Do I need to rename my columns and possibly other tables to remove the spaces for this to work?
Solved! Go to Solution.
Try changing "Vendor Name" to Vendor_x0020_Name
The following reference may help:
Try changing "Vendor Name" to Vendor_x0020_Name
The following reference may help:
@msgeorgie Maybe try:
?filter=RDash/Vendor%20Name eq 'My Company'