How to convert capital letters to small letters in MS excel?

How to convert the Figure into words using MS Excel. Urgent Help required.....?

  • When I use the =spellnumber(101521) command in MS Excel, I get the answer as One Hundred One Thousand Five Hundred Twenty One. But I want to get the result as "One Lac One Thousand Five Hundred Twenty One"

  • Answer:

    1. Alt+F11, click through the modules (module1, Thisworkbook, or Sheet1 etc) to locate the Function Spellnumber, 2. make the following changes on the code Dim DecimalPlace, Count change to Dim DecimalPlace, Count, a add this a = a + 1 right after Do While MyNumber <> "" change this Temp = GetHundreds(Right(MyNumber, 3)) to Temp = GetHundreds(Right(MyNumber, 3), a) change this Function GetHundreds(ByVal MyNumber) to Function GetHundreds(ByVal MyNumber, ByVal a) change this Result = GetDigit(Mid(MyNumber, 1, 1)) & " Hundred " to Result = GetDigit(Mid(MyNumber, 1, 1)) & IIf(a = 2, " Lac ", " Hundred ") Please contact for more info.

MAGGY@YA... at Yahoo! Answers Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.