Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
I am getting syntax error in computation express?
1. Concat(ToText("Major Version"),., ToText("Minor Version"),., ToText("Build Number"))”
2. Concat(ToText("Major Version"),".", ToText("Minor Version"),".", ToText("Build Number"))”
where
Major Version, Minor Version, Build Number are Integer fields
You need to use the Text() function around strings. Strings by themselves are interpreted as field names and you don't have a field called "."
For example:
concat(text("Copyright "),ToText(getYear(now())),text(" My Company Ltd.."))
