Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
I want to create a calculated Dimension based von variables in a Inpout Box. I don't load data in this QVW, only with variables, which can be specified manually.
The calculated dimenson should be generated with this variables: vMin, vMax, vStep
e.g.
vMin=10000
vMax=25000
vStep=1000
Dimension |
---|
10000 |
11000 |
12000 |
13000 |
... |
25000 |
and of course I should be able to work with these values in the expression.
For example:
hourly wage (variable field in input box) * dimension
May be use ValueLoop:
ValueLoop($(vMin), $(vMax), $(vStep))
thx, it works. and how can I use this values in the expression?
vVal1 :10
vVal2:30
vVal3:5
ok I got it
You can use it in a dimension and if you use the same valueloop in the calculation you get the one value of this dimension line.
I wrote a blog quite recently on a very similar topic which I think may help you:
What is the expression you are intending to use?