Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
I try to changeX Axis min by enter 20% , it does not work. any idea ?
You might have checked forced 0 option in axes tab of properties.Uncheck and set the changes
You might have checked forced 0 option in axes tab of properties.Uncheck and set the changes
This can be possible by set the Static min, max and set values for the expression "Scale" area under Axes tab. Also, uncheck the option "Forced 0".
Hi Ven
How can i make use of Argg function to make it dynamic ? my expression as below :-
(
sum({$<year=, month=, date = {">=$(=MonthStart(vSelectedDate, -48))<=$(=vSelectedDate)"}>} sales)/1
-
sum({$<year=, month=, date = {">=$(=MonthStart(vSelectedDate, -48))<=$(=vSelectedDate)"}>} cost)/1
)
/
sum({$<year=, month=, date = {">=$(=MonthStart(vSelectedDate, -48))<=$(=vSelectedDate)"}>} sales)/1
Paul
Under Axes tab, uncheck forced 0 option and try. Regards. siva
Hi,
For min value try this.
Min(Aggr((
sum({$<year=, month=, date = {">=$(=MonthStart(vSelectedDate, -48))<=$(=vSelectedDate)"}>} sales)/1
-
sum({$<year=, month=, date = {">=$(=MonthStart(vSelectedDate, -48))<=$(=vSelectedDate)"}>} cost)/1 )
/
sum({$<year=, month=, date = {">=$(=MonthStart(vSelectedDate, -48))<=$(=vSelectedDate)"}>} sales)/1),Dimensions)
For maximum value
Max(Aggr((
sum({$<year=, month=, date = {">=$(=MonthStart(vSelectedDate, -48))<=$(=vSelectedDate)"}>} sales)/1
-
sum({$<year=, month=, date = {">=$(=MonthStart(vSelectedDate, -48))<=$(=vSelectedDate)"}>} cost)/1 )
/
sum({$<year=, month=, date = {">=$(=MonthStart(vSelectedDate, -48))<=$(=vSelectedDate)"}>} sales)/1),Dimensions)
Regards,
Kaushik Solanki
Hi Kau
Many thank , it work fine.
Paul