@Pritam B Bondarde, if I understand your question correctly you want these KPIs displayed in your report when end user navigates to previous years from the date range selection, but hidden when they are viewing your report in the current year, right?
If that's the case, you can manage any report components' (KPI being one) visibility in the visibility settings under the 'Report' tab. Select the KPI you want to configure, go to visibility settings (with binocular icon). There will be a pop up screen where you can set your dynamic visibility rule (see the screenshot below). The syntax I used is as follows:
<%=IF(DateFormat(CurrentDate(),"yyyy")!="2025","","hidden")%>
In this example if the date range selected is in 2025, KPI will be hidden; if end user navigates to any other year, it will be visible. I hard coded 2025 in this example, you can use a year field from your data source you configure in your data set.
I hope this helps. If you have further questions, feel free to reach out.