Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I need to define only those media whose budget >0 inside a set expression.
I might be like this:
{<Media={="expression"}>}
I tried this expression:
{<Media={="aggr(sum([Budget])>0, Media)"}>}
But it doesn't work.
Can you help me?
Thank you in advance,
Larisa
Try this:
{<Media = {"=aggr(sum([Budget]), Media)>0"}>}
Hope this helps.
Try this:
{<Media = {"=aggr(sum([Budget]), Media)>0"}>}
Hope this helps.
Slight correction:
{<Media = {"=Aggr(Sum([Budget]), Media) > 0"}>}
This might aslo work for you:
Sum/Count/Min/Max(If(Aggr(Sum([Budget]), Media) > 0, Measure))