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
Related Q & A:
- How To Convert Pmd To Word Online?Best solution by pmd.afreecodec.com
- How to convert my SQL query to MS Access query?Best solution by Stack Overflow
- How to convert Json to CSV or Excel?Best solution by Stack Overflow
- How to Count total number of Words in PDF?Best solution by Super User
- How do i scan something? First time using a scaner and i dont think im doing it right. help. thanks?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.