Hi Nitesh,
I am using the same functionality and I split it up in two phases:
1) 'find cell based on value' in the MS excel VBO
2) I created a function myself withing the MS excel VBO called 'Offset Active Cell', based on some code:
Dim Instance As Object = GetInstance(handle)
Instance.ActiveCell.offset(Row_Offset,Column_Offset).activate
In the inputs, you need handle (number), workbook (text), Row offset & Column offset. Make sure you also have data items for all these data
I hope this helps