Convert Number to Words Currency in MS Word
Convert Number to Words Currency in MS Word Step 1: Enable Developer Tab In MS Word If you can't see the developer tab as like in the below picture, Go to File -> Options -> Customize Ribbon -> Check on 'Devloper' under Main Tabs heading, Step 2: Add the Module Code Click on the Visual Basic option in the Developer Ribbon. Right click on the 'Project' title and Insert -> Module Copy and paste the below code in code window of the Module ---------------- Sub ConvertCurrencyToEnglish ( ) ' MyNumber = Val ( Selection. Text ) Dim Temp Dim Rupees, Paise Dim DecimalPlace, Count ReDim Place ( 9 ) As String Place ( 2 ) = " Thousand " Place ( 3 ) = " lakh " Place ( 4 ) = " Crore " ' Convert MyNumber to a string, trimming extra spaces. MyNumber = Trim ( S...