Page 1 of 2 12 LastLast
Results 1 to 12 of 17

Thread: Ms Excel Amount In Words

  1. #1
    Superboy's Avatar
    Superboy is offline Advance Member
    Last Online
    19th November 2023 @ 06:25 PM
    Join Date
    05 Mar 2009
    Gender
    Male
    Posts
    2,955
    Threads
    114
    Credits
    1,456
    Thanked
    87

    Arrow Ms Excel Amount In Words

    WSLM:: bhai jaan kindly muje koi bta skta hai ke ms excel main amounts in words kis tarah set karte hain ya iska formula bta dain thanks

  2. #2
    Join Date
    13 Jan 2009
    Location
    Islamabad
    Gender
    Male
    Posts
    1,265
    Threads
    142
    Credits
    983
    Thanked
    52

    Default

    You Should download all these Excel Formulas. Takay Khud hee expert ban jaye.. Download Link Here

    http://rs322.rapidshare.com/files/18...el_Formula.rar

  3. #3
    Join Date
    28 Aug 2007
    Location
    JEDDAH ,SAUDI ARABIA
    Age
    39
    Gender
    Male
    Posts
    576
    Threads
    7
    Credits
    938
    Thanked
    12

    Default

    try kar ta hoo

  4. #4
    boblik's Avatar
    boblik is offline Senior Member+
    Last Online
    6th March 2014 @ 04:01 PM
    Join Date
    22 Nov 2007
    Location
    Ctrl+A & Delete
    Age
    38
    Posts
    275
    Threads
    39
    Credits
    0
    Thanked
    0

    Arrow Dear Friend Plz Use Following Steps

    Dear Friend Plz Use Following Steps for change Numric Digts In word
    Attached Images Attached Images  

  5. #5
    boblik's Avatar
    boblik is offline Senior Member+
    Last Online
    6th March 2014 @ 04:01 PM
    Join Date
    22 Nov 2007
    Location
    Ctrl+A & Delete
    Age
    38
    Posts
    275
    Threads
    39
    Credits
    0
    Thanked
    0

    Arrow Dear Friend Plz Use Following Steps

    Step 02
    Attached Images Attached Images  

  6. #6
    boblik's Avatar
    boblik is offline Senior Member+
    Last Online
    6th March 2014 @ 04:01 PM
    Join Date
    22 Nov 2007
    Location
    Ctrl+A & Delete
    Age
    38
    Posts
    275
    Threads
    39
    Credits
    0
    Thanked
    0

    Arrow Dear Friend Plz Use Following Steps

    Step 03
    Attached Images Attached Images  

  7. #7
    boblik's Avatar
    boblik is offline Senior Member+
    Last Online
    6th March 2014 @ 04:01 PM
    Join Date
    22 Nov 2007
    Location
    Ctrl+A & Delete
    Age
    38
    Posts
    275
    Threads
    39
    Credits
    0
    Thanked
    0

    Arrow Dear Friend Plz Use Following Steps

    Step 04

    Copy Coding and past in Visual Basic Medul

    =================================

    Option Explicit
    'Main Function
    Function SpellNumber(ByVal MyNumber)
    Dim Rupees, Cents, Temp
    Dim DecimalPlace, Count
    ReDim Place(9) As String
    Place(2) = " Thousand "
    Place(3) = " Million "
    Place(4) = " Billion "
    Place(5) = " Trillion "
    ' String representation of amount.
    MyNumber = Trim(Str(MyNumber))
    ' Position of decimal place 0 if none.
    DecimalPlace = InStr(MyNumber, ".")
    ' Convert cents and set MyNumber to Rupees amount.
    If DecimalPlace > 0 Then
    Cents = GetTens(Left(Mid(MyNumber, DecimalPlace + 1) & _
    "00", 2))
    MyNumber = Trim(Left(MyNumber, DecimalPlace - 1))
    End If
    Count = 1
    Do While MyNumber <> ""
    Temp = GetHundreds(Right(MyNumber, 3))
    If Temp <> "" Then Rupees = Temp & Place(Count) & Rupees
    If Len(MyNumber) > 3 Then
    MyNumber = Left(MyNumber, Len(MyNumber) - 3)
    Else
    MyNumber = ""
    End If
    Count = Count + 1
    Loop
    Select Case Rupees
    Case ""
    Rupees = "No Rupees"
    Case "One"
    Rupees = "One Rupees"
    Case Else
    Rupees = Rupees & " Rupees"
    End Select
    Select Case Cents
    Case ""
    Cents = " Only"
    Case "One"
    Cents = " and One Cent"
    Case Else
    Cents = " and " & Cents & " Cents"
    End Select
    SpellNumber = Rupees & Cents
    End Function

    ' Converts a number from 100-999 into text
    Function GetHundreds(ByVal MyNumber)
    Dim Result As String
    If Val(MyNumber) = 0 Then Exit Function
    MyNumber = Right("000" & MyNumber, 3)
    ' Convert the hundreds place.
    If Mid(MyNumber, 1, 1) <> "0" Then
    Result = GetDigit(Mid(MyNumber, 1, 1)) & " Hundred "
    End If
    ' Convert the tens and ones place.
    If Mid(MyNumber, 2, 1) <> "0" Then
    Result = Result & GetTens(Mid(MyNumber, 2))
    Else
    Result = Result & GetDigit(Mid(MyNumber, 3))
    End If
    GetHundreds = Result
    End Function

    ' Converts a number from 10 to 99 into text.
    Function GetTens(TensText)
    Dim Result As String
    Result = "" ' Null out the temporary function value.
    If Val(Left(TensText, 1)) = 1 Then ' If value between 10-19...
    Select Case Val(TensText)
    Case 10: Result = "Ten"
    Case 11: Result = "Eleven"
    Case 12: Result = "Twelve"
    Case 13: Result = "Thirteen"
    Case 14: Result = "Fourteen"
    Case 15: Result = "Fifteen"
    Case 16: Result = "Sixteen"
    Case 17: Result = "Seventeen"
    Case 18: Result = "Eighteen"
    Case 19: Result = "Nineteen"
    Case Else
    End Select
    Else ' If value between 20-99...
    Select Case Val(Left(TensText, 1))
    Case 2: Result = "Twenty "
    Case 3: Result = "Thirty "
    Case 4: Result = "Forty "
    Case 5: Result = "Fifty "
    Case 6: Result = "Sixty "
    Case 7: Result = "Seventy "
    Case 8: Result = "Eighty "
    Case 9: Result = "Ninety "
    Case Else
    End Select
    Result = Result & GetDigit _
    (Right(TensText, 1)) ' Retrieve ones place.
    End If
    GetTens = Result
    End Function

    ' Converts a number from 1 to 9 into text.
    Function GetDigit(Digit)
    Select Case Val(Digit)
    Case 1: GetDigit = "One"
    Case 2: GetDigit = "Two"
    Case 3: GetDigit = "Three"
    Case 4: GetDigit = "Four"
    Case 5: GetDigit = "Five"
    Case 6: GetDigit = "Six"
    Case 7: GetDigit = "Seven"
    Case 8: GetDigit = "Eight"
    Case 9: GetDigit = "Nine"
    Case Else: GetDigit = ""
    End Select
    End Function

    ================================
    Attached Images Attached Images  
    Last edited by boblik; 27th May 2009 at 10:46 AM. Reason: Add Coding

  8. #8
    boblik's Avatar
    boblik is offline Senior Member+
    Last Online
    6th March 2014 @ 04:01 PM
    Join Date
    22 Nov 2007
    Location
    Ctrl+A & Delete
    Age
    38
    Posts
    275
    Threads
    39
    Credits
    0
    Thanked
    0

    Arrow Dear Friend Plz Use Following Steps

    Step 05
    Attached Images Attached Images  

  9. #9
    boblik's Avatar
    boblik is offline Senior Member+
    Last Online
    6th March 2014 @ 04:01 PM
    Join Date
    22 Nov 2007
    Location
    Ctrl+A & Delete
    Age
    38
    Posts
    275
    Threads
    39
    Credits
    0
    Thanked
    0

    Arrow Dear Friend Plz Use Following Steps

    Step 06
    Attached Images Attached Images  

  10. #10
    boblik's Avatar
    boblik is offline Senior Member+
    Last Online
    6th March 2014 @ 04:01 PM
    Join Date
    22 Nov 2007
    Location
    Ctrl+A & Delete
    Age
    38
    Posts
    275
    Threads
    39
    Credits
    0
    Thanked
    0

    Arrow Dear Friend Plz Use Following Steps

    Step 07
    Attached Images Attached Images  

  11. #11
    boblik's Avatar
    boblik is offline Senior Member+
    Last Online
    6th March 2014 @ 04:01 PM
    Join Date
    22 Nov 2007
    Location
    Ctrl+A & Delete
    Age
    38
    Posts
    275
    Threads
    39
    Credits
    0
    Thanked
    0

    Arrow Dear Friend Plz Use Following Steps

    Step 08
    Attached Images Attached Images  

  12. #12
    boblik's Avatar
    boblik is offline Senior Member+
    Last Online
    6th March 2014 @ 04:01 PM
    Join Date
    22 Nov 2007
    Location
    Ctrl+A & Delete
    Age
    38
    Posts
    275
    Threads
    39
    Credits
    0
    Thanked
    0

    Talking Dear Friend Plz Use Following Steps

    Step 09


    If Eny Problm Plz tell me

    regards
    Attached Images Attached Images  
    Last edited by boblik; 27th May 2009 at 10:49 AM. Reason: add txt

Page 1 of 2 12 LastLast

Similar Threads

  1. How to Convert a number to English words-Excel
    By Abu Dajana in forum Urdu Tutorials & Designing
    Replies: 24
    Last Post: 31st May 2016, 09:29 AM
  2. MS Excel mein amount words mein kesay aey gi?
    By sunnytts in forum Ask an Expert
    Replies: 1
    Last Post: 23rd July 2013, 11:04 PM
  3. Excel !How To Convert RS into words
    By Adeel Anjum in forum Ask an Expert
    Replies: 5
    Last Post: 18th May 2013, 12:06 PM
  4. Solved Excel Total amount Error
    By Qutab in forum Solved Problems (IT)
    Replies: 6
    Last Post: 11th October 2011, 06:13 PM
  5. Solved convert numbers into words in excel
    By naeemgees in forum Solved Problems (IT)
    Replies: 8
    Last Post: 27th April 2011, 07:07 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •