Skip to main content
Solved

Date conversion YYYY -> DD.MM.YYYY

  • September 6, 2016
  • 1 reply
  • 13 views

lazarlubomir
Contributor
Forum|alt.badge.img+10

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!

Best answer by takashi

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.

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

1 reply

takashi
Celebrity
  • Best Answer
  • September 6, 2016

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.