Data feed orders in Data feed don't match the workspace report only for one marketing channel
Hi,
The other day I ran into some weird issue with Data Feeds.
I collected in my local database data feeds extracts daily, starting from Jan 1st, 2023 to date. I usually work with data for marketing channel =Email and the formulas I used to calculate different metrics had worked fine so far. However, yesterday I tried to calculate the number of Orders from the entire data set - all marketing channels (va_closer_ID) and I noticed a big difference from what the workspace report shows and the calculation I use on the data feed. I dug a bit deeper and what I discovered was that all channels report the same numbers, except for one. For this channel the differences are in the order of tens of thousands. If there were a few here and there, I would suspect some delays with the data, but such big of a number is kind of suspicious.
I use this to determine orders in my data feed dataset:
select count(*) as Orders from <my data feed local table>
where (post_event_list like '1,%' or post_event_list like '%,1,%' or post_event_list like '%,1')
and ... <<other criteria>>
Any idea why this might happen?
Thanks.