Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

Opens / Clicks using RowID (or something similar) of BroadLog

Avatar

Level 2

Trying to build a report table show Opens / Clicks using something similar to the recipient delivery log 'RowId' 

 

Have built workflow using BroadLog, TrackingLog & Recipient tables, and complimentary data: RowId(GetDate([delivery/broadLogRcp/eventDate])).... but this generates the RowId of the BroadLog, not the Recipient Broad Log.

 

I'm just trying to build a table something like the following: 

 

1st email recipients receivedopensclicks
2nd email recipients receivedopensclicks
3rd email recipients receivedopensclicks

 

All recipients have received different emails 1st, 2nd and 3rd depending on when they subscribed. 

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi,

 

RowId() returns the line number of the row in the result set, and so would ignore any args passed to it.

You can get the 1st delivery, 2nd delivery.. with rownum(partitionby([@recipient-id]), orderby(min(@eventdate)) = 1, 2.. on broadlogrcp. From there it's a join to trackinglogrcp for the counts.

 

Thanks,

-Jon

View solution in original post

3 Replies

Avatar

Correct answer by
Community Advisor

Hi,

 

RowId() returns the line number of the row in the result set, and so would ignore any args passed to it.

You can get the 1st delivery, 2nd delivery.. with rownum(partitionby([@recipient-id]), orderby(min(@eventdate)) = 1, 2.. on broadlogrcp. From there it's a join to trackinglogrcp for the counts.

 

Thanks,

-Jon

Avatar

Level 2
Thanks, but I need this for AC classic, and RowNum & PartitionBy don't work in Classsic