Hi Team,
We have a recurring campaign that runs once in a month and needs to check if a customer has an entry on or after 16th of previous month. can someone help on how to query the same, thanks in advance.
Thanks,
Shine v.v
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @ShineVv0823 ,
Instead of going with Js calculation try this simple function in your query activity and see if this helps:
ToDateTime('"' + toString(Year(MonthsAgo(1))) + '-' + toString(Month(MonthsAgo(1))) + '-16T00:00:00.000Z')
Here you use the ToDateTime function which calculates the date from the input string and in the input string you can calculate the Year of last month and the month of last month and hard code rest like 16 in your case.
See if this gives you desired results.
Br,
Shubham
Hi @ShineVv0823 ,
Instead of going with Js calculation try this simple function in your query activity and see if this helps:
ToDateTime('"' + toString(Year(MonthsAgo(1))) + '-' + toString(Month(MonthsAgo(1))) + '-16T00:00:00.000Z')
Here you use the ToDateTime function which calculates the date from the input string and in the input string you can calculate the Year of last month and the month of last month and hard code rest like 16 in your case.
See if this gives you desired results.
Br,
Shubham
You can do what you need using the following functions:
Created Date on or after AddDays(YearAndMonth(SubMonths(GetDate(), 1)), 15)
@juantonio_18 , @Shubham_Goyal__ , both of your solutions are working, thank you so much
Hi @ShineVv0823,
Wishing you a very happy new year!
In such a case, you could mark that one which you ended up using in your practice. Hope this helps resolve the confusion.
Thanks!
Views
Replies
Total Likes
Views
Likes
Replies