Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a issue where I have a calculated dimension where I need to use the value in an expression. Is there a way to use this value in my expression? Please note that my chart does not work when I use the calculated dimension as an expression.
Thanks for any help you can provide!
Hi!
Try that expression :
=enddate - if(startdate > From, From, startdate)
i try :
=day(if(startdate > From, From, startdate)) - x
my data:
LOAD * INLINE [
name, startdate, From, x
john, "2010-10-10", "2010-10-06", 3
mad, "2010-10-10", "2010-10-12", 4
tad, "2010-10-10", "2010-10-02", 5
];
it work in simple bar chart with dimension =if(startdate > From, From, startdate)
Hi, can you write what you need, simple example? I have some problems with it, maybe i can help you...
i made the following dimension:
=if(startdate > From, From, startdate))
I want the following expression:
=enddate-startdate
startdate should be the above dimension.
Hi!
Try that expression :
=enddate - if(startdate > From, From, startdate)
i try :
=day(if(startdate > From, From, startdate)) - x
my data:
LOAD * INLINE [
name, startdate, From, x
john, "2010-10-10", "2010-10-06", 3
mad, "2010-10-10", "2010-10-12", 4
tad, "2010-10-10", "2010-10-02", 5
];
it work in simple bar chart with dimension =if(startdate > From, From, startdate)
Thank you for the answer solved my problem
glad to help, im beginner in QV, like you, it's hard to understand this strange product without any book,
unfortunately, help and manual don't answer on all question.