Hi @Sumitra_Sai
I think instead of trying by image to identify the input template, it would be best to try with sheet names. Take this below example:
Suppose i have sheets in the below excel:


Input is input sheet while 2nd sheet Input_Template is template excel sheet.
Now see the flow :

Steps:
1. Launch the excel workbook having two sheets and store its excel instance in ExcelInstance.
2. Get all worksheets names of ExcelInstance and store in SheetNames variable.
3. Check using if condition if SheetNames variable contains Input_Template as element like below

If it contains Input_Template: Then proceed with below steps
a. Launch a new excel instance ExcelInstance1
b. Copy cells from ExcelInstance

c. Paste cells to excelinstance2

d. Rename worksheet name of ExcelInstance2 from Sheet1 to Input_Template

e.Save excel with a specific file like below

f. Close Excel Instance 2
Outside the loop, close input excel instance as well.
Hope the design helps
Reason why i used copy cells and paste cells option is because they will preserve the format of cells if needed (like in my bold cells type)