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"])
- 1up6 years ago
Resolver I
So it was that simple after all, thanks a lot, all of a sudden this day seems much better. 🙂
Any one knows why paranthesis are needed for the text.lower-statement, while it is not needed for the if-statement?
- JGrant87082 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]