Hi Omkar,
Set objExcel = CreateObject("Excel.Application")
Set objWorkBook = objExcel.Workbooks.Open ("C:\temp\Salary.xls")
Set objSheet = objExcel.Sheets("Sheet1")
Set Cells=objSheet.Cells
'Find Cell Position of "Column_Name
Set objvalueFind=objSheet.UsedRange.Find("Column_Name")
If Not objvalueFind is Nothing Then
sAddress=objvalueFind.Address
aRowCol=Split(sAddress,"$",-1,1)
End If
'In this way you can get name/position of Column and "aRowCol" Variable contain number of column
Same think you can do for to get Row number then combine both and enjoy :)
Feel free to ask if you have any query :)
--
Thanks & Regards
Sujit :)