Hi to all
I use this code to open multiple Excel files and taske the vaslue of a specific cell
In one of them it show me the message "This workbook contains links to other data sources"
I'm not sure aboute the message because is in Grrek language.
Did you knou how can i open this excel without show me any messages about update???
Thanks and regards.
I use this code to open multiple Excel files and taske the vaslue of a specific cell
Code:
Function OpenExcelFile(PathFolderName) As String
Dim XL As Excel.Application
Dim WBK As Excel.Workbook
Set XL = CreateObject("Excel.Application")
Set WBK = XL.Workbooks.Open(PathFolderName)
OpenExcelFile = WBK.Sheets(TabName).Range(CellName).Value
WBK.Close False
Set XL = Nothing
End Function
In one of them it show me the message "This workbook contains links to other data sources"
I'm not sure aboute the message because is in Grrek language.
Did you knou how can i open this excel without show me any messages about update???
Thanks and regards.