Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello i need to add a graph dimension in a pivot table, can you tell me how to set the minimum and maximum range in the settings?
I set the minimum and maximum like 0, 999999999 but it seems to not show me nothing of significant data.
Thanks
Marco
you can specify this in the expression itself
for example I got a pivot table and i have a cell to display count of a metric from a date date1 to a another date date2
the expression is as follows:
count
(
DISTINCT
{
<
Year=
,Month=
,CALENDAR_DATE={">= $(vFromDate) <=$(vToDate)"}
,RECORD_TYPE={'WASTE'}
>
}TEST_ID)
and the result is as follows:
I need a graphic column that represents the previous numeric count of data.
In my example there is a field that contains the count of a field, so i need a graphic expression used to show this in a linear graph mode.
This is the expression:
The settings
This is the result
86 compared to 99999999 is too small to be represented
instead of putting 99999999 put an expression like =max(your_field)
If i use this expression, in the column:
=Max(Count({< FLAG_SMATERIALIZZATO = {"S"}>}FLAG_SMATERIALIZZATO))
is reported this error:
"Minimum and Maximum Value wrong for the graph". (I have translated from itaian version)
Marco
use max(aggr(sum.....,your_dimension))
can you send me a sample qvw file?
What do you intend for dimension in case of use of this formula:
=Max(Count({< FLAG_SMATERIALIZZATO = {"S"}>}FLAG_SMATERIALIZZATO))
Marco
use
max(aggr(count({< FLAG_SMATERIALIZZATO = {"S"}>}FLAG_SMATERIALIZZATO)),Dimension))
Dimension is the column you added in your dimension list
I have added this expression:
max(aggr(count({< FLAG_SMATERIALIZZATO = {"S"}>}FLAG_SMATERIALIZZATO)),DATA_PRES)
But it still doesn't work.
Marco