Hi all,
I am trying to create a line that passes through 0 and ends at 14 million.
I am attaching an image, the blue line represents the running total and I want to implement the red straight line.
The X axis is date and Y-axis is Sales.
Any help is appreciated, thanks.
5 answers

Hello @Rupesh Ghosh ,
Try this calculation
max(14000000) / (window_count(countd(DATETRUNC('month', [Order Date])))-1) * abs(FIRST())
Hope this helps! See attached.
@Robert Breen