VBA Foreign Language not supported for Excel 365 for Mac

Akash Jangir 1 Reputation point
2021-08-24T10:55:02.847+00:00

Hi,

I'm trying to create a .txt file out of my excel sheet which has 'Korean' Characters in the sheet.
When I try to read those char in a String variable its not showing the characters properly. It shows (__) instead of actual Korean characters.
Same code is working in Windows but not working in Mac

My excel sheet has this data. Please see the screen shot attached

126014-screenshot-2021-08-24-at-42028-pm.png

I'm getting below output in my .txt file

125937-screenshot-2021-08-24-at-42658-pm.png

Below is the code I'm using.

OutputFileNum = FreeFile  
Open fileSaveName For Output Lock Write As #OutputFileNum  
Appender = "Some text from sheet"  
  
Print #OutputFileNum, Appender  
Developer technologies | Visual Basic for Applications
{count} votes

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.