Csv using field name that contains spaces

Hi,

I have a CSV file with spaces in the field names. How should I use the following?

For example:

  • Fieldname without space "Product": fileButton1.parsedValue[0][i].Product
  • But how about a fieldname with space "Product Number"?

thank you.

Hi @Jan_Festjens, welcome to the community. :wave:

Use JS convention on this one: fileButton1.parsedValue[0][i]['Product Number'].

1 Like

Hi Jocen, thank you. Feeling really happy with Retool for my little internal projects :slight_smile:

I tried your solution and it works. Thank you!

1 Like