Skip to main content

Hello,

I have attribute which contains just date with year (e.g. 1970). What I need is convert this date to format DD.MM.YYYY - 01.01.1970. How can I reach it please? I checked DateFormatter, but its not usable for this case...

Thank You for tips!

Hi @lazarlubomir, if you need to convert every year value "YYYY" (e.g. 1970) to "01.01.YYYY", just concatenate "01.01." and the year value with the StringConcatenator (or AttributeCreator or AttributeManager). e.g.


Reply