1

I have a column name such as Titre d'emploi, and when i refer to it as [Titre d'emploi], it gives me an error and i tried multiple things like ["Titre d'emploi"], and i googled for quite a while but nothing really applies.

Would you guys have any idea of how to refer to it?

Many thanks!

Alexis Olson
  • 38,724
  • 7
  • 42
  • 64

1 Answers1

1

It should be similar to the automatically generated step names in the advanced editor:

[#"Titre d'emploi"]

You should be able to discover this yourself by looking at the code generated when you do something to that column. For example, if you choose Transform > Statistics > Count Values, then you'll get code like this:

= List.NonNullCount(#"Previous Step Name Here"[#"Titre d'emploi"])
Alexis Olson
  • 38,724
  • 7
  • 42
  • 64