Forum Discussion
1up
6 years agoResolver I
Custom 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
6 years agoCommunity Champion
You 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]