0 Unopened Emails Data View 2 Jeremy Turgeon posted 8 Years Ago I'm trying to create a data view that shows people who haven't opened a weekly email for the last 4 weeks. Then, I need to send a communication to those people.This first problem is that I can create a data view (using the Communication Recipient) and format it with a report, but can't actually communicate or bulk update. The second is that I can't figure out how to combine data views to display only people who didn't open any of the emails but did receive them.
Jeremy Turgeon 8 years ago I see what you mean, though my understanding of SQL is limited. What I'm trying to pull out of the data is specific communications and the people who haven't opened any but have received all of them.Something like:SELECT *FROM [CommunicationRecipient]WHERE[CommunicationId] = '7500'OR[CommunicationId] = '7600'OR[CommunicationId] = '7700'OR[CommunicationId] = '7800'AND[OpenedDateTime] IS NULLPlus the fancy left joining ;)
Michael Garrison 8 years ago hmmmm, so you want your report to give you a list of recent communications so you can indicate which messages you want to check to see who didn't open any?
Jeremy Turgeon 8 years ago What you posted earlier was much closer to the mark. I was just trying to illustrate the concept. A list of people who received several specific communications and didn't open them. The end goal being to communicate with said people.