Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
When using a synthetic Dimension in a chart with functions like ValueList() ou ValueLoop(). Is there any way to display the current dimension value in Expressions ?
(I’m using Rowno() function but I would like to get the Dimension Value).
Regards
OK
I've attached a "sandbox" qvw to explain my last point
Regards
Set analysis gets evaluated once for an objcet(NOT row-wise), try with 'if' like:
=If(ValueLoop(2010,2014)<=2013,
sum(If(Year=ValueLoop(2010,2014),Value)),
sum(If(Year=ValueLoop(2010,2014)-1,Value))
)
OK Thanks !