Jul 24 2021 09:43 PM
Hi
I have tried this link to use for this purpose. However there is a error when I execute it.
Also if someone can direct me to a chart on how to use Windows shortcuts on Mac keyboard. For example this article says use Alt 11 and Alt Q for Windows, but it didn't work on Mac.
Thanks for help.
Jul 25 2021 01:53 AM
Jul 25 2021 04:01 AM
@ruumi Copying and pasting from the web included some unwanted characters. Deleted them and the code seems to do what is described in the article.
With regard to Alt-shortcuts in Excel for the Mac, they simply don't exist to the same extent and are quite different. Easiest to refer you to a MS support page. Link below.
Jul 30 2021 10:49 PM
@Riny_van_Eekelen can you please help me with the errors you deleted?
Jul 30 2021 11:25 PM
@ruumi There are two lines of code that have an underscore "_" in them. One is the line you mentioned, where you can just delete the space underscore directly after the &-sign.
The other one is a bit further down.
Result = Result & GetDigit _
(Right(TensText, 1)) ' Retrieve ones place.
Just get rid of the underscore and put the entire code on one row, like so:
Result = Result & GetDigit (Right(TensText, 1)) ' Retrieve ones place.
Then it works for me.
Mar 14 2024 03:54 AM