This message was deleted.
# ask-questions
w
This message was deleted.
f
Hi Jules
The numerator is not matching? 909 and 915 - or do you mean it should use the revenue instead?
r
I'd expect RPU to be Product Revenue / Users that purchase. The Users match, but the Product revenue doesn't
f
@future-teacher-7046 would be able to help better, I’ll let him know
f
Are all of the metrics selecting from the same table?
r
Yes.
The revenue query uses a 2nd table in the DWH to fetch "official" revenue
Copy code
with x as ( select .. from GA4 left join DWH using(transactionid) )
select user, timestamp, value from x
I then used: duplicate metric And selected a Denominator (users that purchase)
@future-teacher-7046 I found the error, it's on my side.
We send/use "transactionid" on 3 events, and I used the timestamp of the first one, not the "one with the event name purchase" - so the timestamp >= clause was leaving the users out sometimes. A few milliseconds can make the difference.
Thanks for allowing me to show the SQL in the interface. It's all neat and tidy now.
153 Views