Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have two dimensions:
I want to build a table with Source as dimension.
However, I want to show only those Fileds, where Channel=Paid.
something like
={<Channel={'Paid'}>} source
I know I can put a Channel filter on the dashboard > choose 'Paid' as the table will show me the numbers.
My aim is to limit the clicks so the table shows 'Paid' Sources right away.
Thank you!
Gleb.
Try this as your dimension for Source
= Aggr(Only({< Channel = {'paid'} >} Source), Source, Channel)
Try this as your dimension for Source
= Aggr(Only({< Channel = {'paid'} >} Source), Source, Channel)
If the above doesn't work, you can try to just use a simple if statement. I do something similar in one of my tables. It would look like:
=if(Channel = 'Paid', Source)
Let me know if it does not work out, good luck!
Both of them work, thank you!