내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards
해결됨

Target records who's start date column is equal to certain days ?

Avatar

Level 6

How can I filter audience where they are there in the system for certain days lets say 20days from their start date field?

 

Thank you in advance. 

 

Best,

Revanth

주제

토픽은 커뮤니티 콘텐츠를 분류하여 관련성 있는 콘텐츠를 찾는 데 도움이 됩니다.

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 6

DateOnly(@columnName) equal to DateOnly(DaysAgo(noOfDays))

원본 게시물의 솔루션 보기

4 답변 개

Avatar

정확한 답변 작성자:
Level 6

DateOnly(@columnName) equal to DateOnly(DaysAgo(noOfDays))

Avatar

Community Advisor

Hi @rvnth ,

Start date means creation date of recipient profile?

AddDays(@created, 20)    -> This will add 20 days from starting date.

So,

DateOnly(AddDays(@created, 20)) equals to DateOnly(GetDate())

ParthaSarathy_0-1701425778290.png

The above condition will result out recipients who got created in your system 20 days ago

 

 

Avatar

Level 6

Thank you for your reply @ParthaSarathy , Actually I am looking for the recipients who are there in the system for 20days based up on their subscription date column , which is the best way to accomplish this ?

 

The one I have added or the above? Please can you explain the difference between these two?

 

Thank you in advance.

Avatar

Community Advisor

Both conditions will give the correct output @rvnth !

So you can use any...