How to get the yesterday date in AJO? | Community
Skip to main content
New Participant
July 1, 2024
Solved

How to get the yesterday date in AJO?

  • July 1, 2024
  • 3 replies
  • 772 views

How to get the yesterday date in AJO?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Mohan_Dugganab

If you need this for personalization in the messages, either setDays function or the following snippet can be used 

 

{% let yest = currentTimeInMillis() - 86400000 %}
{% let computedDate = toDateTimeOnly(yest) %}
{%= formatDate(computedDate, "dd/MM/yyyy") %}

 

Reference - https://experienceleague.adobe.com/en/docs/journey-optimizer/using/content-management/personalization/functions/dates#set-days

 

 

3 replies

Sukrity_Wadhwa
Employee
July 19, 2024

Hi @niteshsingh,

Were you able to resolve this query with the help of the given solutions or do you still need more help here? Do let us know. In case the given solutions were helpful, then kindly choose the one that helped you the most as the 'Correct Reply'.
Thanks!

Sukrity Wadhwa
Mohan_Dugganab
Mohan_DugganabAccepted solution
Employee
July 3, 2024

If you need this for personalization in the messages, either setDays function or the following snippet can be used 

 

{% let yest = currentTimeInMillis() - 86400000 %}
{% let computedDate = toDateTimeOnly(yest) %}
{%= formatDate(computedDate, "dd/MM/yyyy") %}

 

Reference - https://experienceleague.adobe.com/en/docs/journey-optimizer/using/content-management/personalization/functions/dates#set-days