So I was trying to use the left() function for text data types, which is supposed to return a string, but it instead keeps returning an integer. Is there anything wrong with my code or am I misinterpreting this function (https://docs.appian.com/suite/help/19.2/fnc_text_left.html)?
a!localVariables( local!locationJson: rule!Geo_getLongLat(), /*returns json*/ local!textCoordinates: local!locationJson.result.body.loc /*returns text*/ left(local!textCoordinates,3) )
Discussion posts and replies are publicly visible
Hi swolfe,
Can you check whether local!textCoordinates is text or number?
Hi i fixed the issue, I was missing a comma after the second line
*line 5