How to access table column name with spaces

What’s the moustache code to access a table column data that has spaces in it?

I’ve tried :
{{tablename.updatedRow.Column Name}}
{{tablename.updatedRow.‘Column Name’}}
{{tablename.updatedRow.[‘Column Name’]}}

Can someone verify what the syntax would be? Thanks in advance!

Hello! The correct syntax for column names with spaces or special characters should be: {{tablename.updatedRow['Column Name']}}
Let us know if this works for you.

Thanks so much! That was it!