Skip to main content
error

We made a wrong turn. Try again.

I have a field (Quote_Date__c) that shows the date in American style: (10/22/2019)

 

I am creating a new formula field (text) to convert the date to: 22/10/2019

 

This is the formula that I've used:

 

text(DAY(Quote_Date__c() )) +'/'+  text(MONTH(Quote_Date__c() )) +'/'+ text(YEAR(Quote_Date__c() ))

 

But I'm getting syntax error.

 

Formula to convert American Date Format to European Style?

 

Any idea what's wrong with my formula please?
3 answers
0/9000