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

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

Days before first purchase from registration date

Avatar

Level 1

Hi,

I'm looking to implement a rule in adobe launch similar to the Days before first purchase with a slight modification. I want to know the Days before first purchase from the date of registration.

 

Any insights will be really helpful.

Thanks!

주제

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

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 8

There may be better ways to do this but my approach would be to get a FIXED registration date (using Unix Timestamp) added to your data layer, which is available on all visits post registration, such as:

 

registrationTime = 1593172370551

 

You could set this in Launch, but personally I would use the data layer for reliability.

 

Then when a customer makes a purchase, create a "date difference" value in Launch between (Date.now() - registrationTime), which you can convert to Hours / Days / Weeks etc and set this as an EVENT / EVAR. Depending on your business need, you may want to get exact numbers (average 1.44 days) or rounded for graphing in EVARS.

 

I hope this helps.

 

Dave

원본 게시물의 솔루션 보기

2 답변 개

Avatar

Level 4
Do you have access to Adobe data feeds? If so you could query this by referencing the registration event and the last_purchase_num column.

Avatar

정확한 답변 작성자:
Level 8

There may be better ways to do this but my approach would be to get a FIXED registration date (using Unix Timestamp) added to your data layer, which is available on all visits post registration, such as:

 

registrationTime = 1593172370551

 

You could set this in Launch, but personally I would use the data layer for reliability.

 

Then when a customer makes a purchase, create a "date difference" value in Launch between (Date.now() - registrationTime), which you can convert to Hours / Days / Weeks etc and set this as an EVENT / EVAR. Depending on your business need, you may want to get exact numbers (average 1.44 days) or rounded for graphing in EVARS.

 

I hope this helps.

 

Dave