Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Column names with reserved keywords not being identified properly while importing data in PowerBI

While importing data I'm using MS SQL Server query. Few columns in the data have reserved key words in them for eg. [Opportunity Close Date]. Such columns can be addressed properly in SQL server by putting them in square brackets but PowerBI keeps throwing error, "Invalid Coumn name 'Opportunity Close Date'". I have tried writing such column names:

1) Using square brackets

2) In double quotes

3) In single quotes

4) Casting them as nvarchar()

5) Using table.column_name convention

6) Combination of 1 and 5

 

But still no luck 😞

1 ACCEPTED SOLUTION
dax
Community Support
Community Support

Hi Nash_s,

Yes, when refer to field, you could use [#"Opportunity Close Date"] to see whether it work or not

471.PNG

In addition, you need to make sure there is no space at the end of column name, you could see my above image, there is a space at the end of [amount], so I need to use [#“amount ”].

By the way, did you refer to last steps's result? If so, you need to use last steps name instead of column name(you could see the #"Added custom" row)

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
dax
Community Support
Community Support

Hi Nash_s,

Yes, when refer to field, you could use [#"Opportunity Close Date"] to see whether it work or not

471.PNG

In addition, you need to make sure there is no space at the end of column name, you could see my above image, there is a space at the end of [amount], so I need to use [#“amount ”].

By the way, did you refer to last steps's result? If so, you need to use last steps name instead of column name(you could see the #"Added custom" row)

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Could someone help me? I am having the same problem but #"" didn't solve it for me.

I am using ODBC conector to connect to a server where I query the following:

 

Fonte = Odbc.Query("dsn=default-server", "select "from".taxid from clients")

 

In this case, using #"from".taxid or [#"from"].taxid keep returning the error "a token was expected ','". 

 

How can I solve it?

Anonymous
Not applicable

I realized that there was space at the end of the field name that made PowerBI to not identify it properly. Thanks for the help. Appreciate it 🙂

@dax 

Anonymous
Not applicable

Hi @Anonymous ,

 

Try [#"Opportunity Close Date"]. It should work PQ.

Just had a second thought: you have a problem naming them in PQ, not transferring names to PBI?

 

Kind regards,

John

Anonymous
Not applicable

Thanks for the response. I realized there was a space after the field name that made PowerBI to not identify the field properly.

@Anonymous 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors