I have a data set with columns corresponding to Country (Aus/NZ), Sent, Opened, Open Rate (=Opened/Sent) over the months.
I can calculate Sent & Open by summing up the values & Open Rate by diving those two.
Is it possible to create a calculated field Open Rate_Aus which holds the value of Open Rate for AU only.
I tried using expressions as below but in vain. It throws error saying 'can't mix aggregate & non-aggregate in IF expressions'
{FIXED [Country] : max(IF [Country] = 'AU' THEN [Open Rate] END)}