Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I use two dimensions on my chart:
1. "Week of the Year"
2. Year
The result is as follows:
Now I want to create a custom range for the Y-axis, which is the maximum weekly sales out of the filtered range (in the example it is the week 16) plus fixed value.
The formula I put is:
Max([Sales])+{1.000.000}
It does not work.
Am i missing something?
You need max of weekly sales, so probably this
max(aggr(sum(Sales),Week,Year)) + ....
You need max of weekly sales, so probably this
max(aggr(sum(Sales),Week,Year)) + ....
Works fine.
I now understand the logic, thank you.