Hi,
I’m new on Coda.
Do you know why there’s nothing displaying into the output column?
In case you need, here’s the link to the doc: https://coda.io/d/Be-Nat_daZWOtNxHSw/_suVLF
Thanks guys for your help.
Hi,
I’m new on Coda.
Do you know why there’s nothing displaying into the output column?
In case you need, here’s the link to the doc: https://coda.io/d/Be-Nat_daZWOtNxHSw/_suVLF
Thanks guys for your help.
i think you need to link a row of performance 2
to link to a row in audiences
- when you did Audiences.Volume
in your formula, you pulled out a collection of values (and thus the stacked icon next to it) and as its not a single value, multiplying it with a bench %
doesnt really work.
here are the steps i would suggest:
performance2
table - lets call it stageAudiences
tableif(stage = 'awareness', 0 , Bench% * Audiences.filter(stage = thisRow).Volume.first()
(or Volume.sum() - if you expect more than one values in single stage) would give you the right result.Thank you genius @Krunal_Sheth! This one works.