Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hey everyone I have data of transactions in which i want to get the average only if the transaction_type =DEBIT_CARD
Hi
Something like this
Avg(if(transaction_type='DEBIT_CARD',transaction_value))
can we apply the same technique for avg per day ?
aggr(avg({<transaction_type = {'DEBIT_CARD'}>} transaction_value), day_field)