Forum Discussion
1up
Resolver I
6 years agoCustom Column in Query Editor throwing "We Cannot apply field access to the type Function"
In trying to add a custom column in the query editor, an error is displayed. "Expression.Error: We cannot apply field access to the type Function. Details: Value=[Function] Key=Repairing Deale...
- 6 years ago
You need brackets
Text.Lower([#"CustomerName"])
HotChilli
Community Champion
6 years agoYou need brackets
Text.Lower([#"CustomerName"])
JGrant8708
2 years agoFrequent Visitor
I had the same error message when I forgot an "&" between two text fields I was appending.
E.g., [Company] & " (" [Address]
Which needs to be [Company] & " " & [Address]