Try:
Function ExtractZipAndSaveAsTxt(zipFilePath As String, destinationFolder As String)
Dim shellApp As Object
Dim zipFolder As Object
Dim fileItem As Object
Dim extractedFilePath As String
' Create Shell object
Set shellApp = CreateObject("Shell.Application")
' Open the ZIP file
Set...