Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have Year and month fields and sales data.
Year Month Slaes
2021 1 10
2021 2 20
2021 3 20
...
Requirement :
Two filters are there Year and Month.
If select the year 2021 and Month Jan --- KPI value is : 10
If select the 2021 and Month is Mar ---- It will display value is :30 but
I need value is :10+20+30=60
If I select the Nov month --- Jan to Nov Data
If select the June month --- It will display the Jan to June sales.
If select the any month it will display the Jan to selected month sales data.
Please Help Me.
Thanks Advance
Sum({$<year={$(=max(year))},Month={">=$(=Min(Month)<=$(=Max(Month)))"} >} Sales)
Hi Anat,
Thanks for solution,
I tried but , If I select the May month, Here it's displaying may month data , not showing Jan to May month data. Here Min and Max takes the selected value not taken for the Jan to Selected value.
Thanks
Ram
While taking min month bypass the current month selection
Try below
=Sum({<year={"$(=max(year))"},Month={"<=$(=max(Month))"}>}Sales)
Regards,
Prashant Sangle