How to view date in other format with Concatenation?

In my google sheet locale format is English. I enter all dates in format dd.mm.yy - its ok.

But when I write query with "select" dates and Concatenate with other data like (in output): "ClientName - DateOfBirdth", so i receive: 
"John Smith - mm/dd/yy". 
But I need:
"John Smith - dd.mm.yy"
Where can I it change? Or It is Concatenation rules?   
0 4 96
4 REPLIES 4

@Sofjw722  In appsheet try a text column using this formulae:

[ClientName] & " - " & Text([DateOfBirth], "dd.mm.yy")

Same as

CONCATENATE([ClientName], " - ", Text([DateOfBirth], "dd.mm.yy")) 

does not work.. writes: "TEXT function with two arguments requires a temporal type and text representing a date format"

Make sure your DateOfBirth column is set to Date type. 

Dates will display in your App views according to the Locale/Regional Settings on your device/browser. Set the locale on your device to the desired settings and it will fix your display.

A part from that, to have no calculation errors, make sure both, your sheet and your table settings in the AppSheet Editor, are set to the same locale. 

Top Labels in this Space