Results 1 to 9 of 9

Thread: Excel Expert Kindly Help Me

  1. #1
    creative_eyes's Avatar
    creative_eyes is offline Senior Member+
    Last Online
    16th May 2020 @ 06:35 PM
    Join Date
    11 Jul 2008
    Location
    SAUDI ARABIA
    Gender
    Male
    Posts
    307
    Threads
    161
    Credits
    1,001
    Thanked
    22

    Default Excel Expert Kindly Help Me

    http://www.itdunya.com/t445090/Asalamu alaikum It Members

    Mujhe Excel Me Numaric Amount Ko Word Me Show Karna hi My Ne Net Se Ek Code Download Kia Aur Phir Doveloper Tool Visual Basic Insert Module Me Past Kara....Aur Matloob Cell Me Fourmula Apply Kardia Mugar Ya Code Doller Me Show Horaha Hi Ya Phir Rupees Me Mujhe Riyal Me Show Karna Hi Jahan Rupees Araha Hi Waha Riyal Show Hona.....Screen Shot Is Attached

    Please Help Me ...Is Link Per . P.O Hi

    http://www.itdunya.com/t445090/

    Allah Hafiz
    Attached Images Attached Images  
    Last edited by creative_eyes; 6th June 2014 at 12:27 PM.

  2. #2
    Sahil_Jaan's Avatar
    Sahil_Jaan is offline V.I.P
    Last Online
    13th April 2024 @ 08:40 PM
    Join Date
    05 Jan 2008
    Gender
    Male
    Posts
    14,710
    Threads
    673
    Credits
    11,234
    Thanked
    1925

    Default

    آپ یہ فائل یہاں اپلوڈ کر دیں

  3. #3
    creative_eyes's Avatar
    creative_eyes is offline Senior Member+
    Last Online
    16th May 2020 @ 06:35 PM
    Join Date
    11 Jul 2008
    Location
    SAUDI ARABIA
    Gender
    Male
    Posts
    307
    Threads
    161
    Credits
    1,001
    Thanked
    22

    Default

    Quote Sahil_Jaan said: View Post
    آپ یہ فائل یہاں اپلوڈ کر دیں
    Asalamu alaikum

    My ne Yahan Ek Quotation Upload Kia Hi........ Mujhe Numeric Value Into English Words Me Saudi Riyal Apply Karna Hi.....
    Thanks
    Last edited by creative_eyes; 5th June 2014 at 02:31 AM.

  4. #4
    creative_eyes's Avatar
    creative_eyes is offline Senior Member+
    Last Online
    16th May 2020 @ 06:35 PM
    Join Date
    11 Jul 2008
    Location
    SAUDI ARABIA
    Gender
    Male
    Posts
    307
    Threads
    161
    Credits
    1,001
    Thanked
    22

    Default

    Quote Sahil_Jaan said: View Post
    آپ یہ فائل یہاں اپلوڈ کر دیں
    Asalamu Alaikum My Up-load Karne Ki Koshi Kara Hoon Mugar Wo Upload Nahi Horahi Hi 2.28 MB Ki File Hi Agar Aap Apna E-Mail Address Den To My Wo Quotation Wali File Send Karonga.....
    Thanks

    Allah Hafiz

  5. #5
    Join Date
    27 Feb 2014
    Location
    depalpur okara
    Age
    28
    Gender
    Male
    Posts
    241
    Threads
    21
    Thanked
    5

    Default

    i think, e-mail addresses are not allowed .. G

  6. #6
    creative_eyes's Avatar
    creative_eyes is offline Senior Member+
    Last Online
    16th May 2020 @ 06:35 PM
    Join Date
    11 Jul 2008
    Location
    SAUDI ARABIA
    Gender
    Male
    Posts
    307
    Threads
    161
    Credits
    1,001
    Thanked
    22

    Default

    Sahill Bahi Aap Ke Reply Ka Intezar ......Rahega Yahan P.O Ki File hi
    Note : P.O Ke Lie Jo Masla Pooch tha Wo Masla Hal Ho gaya Mugar Mujhe yahan Srif Total Me Numaric Value Ko Word Me Automatic Generate Karna Hi =spellnumber Wale formule me Jo Doller/Rupee Ko Chode Ke Srif Riyal Me Ho
    http://www.itdunya.com/t445090/
    Last edited by creative_eyes; 6th June 2014 at 12:34 PM.

  7. #7
    syar is offline Advance Member
    Last Online
    2nd May 2024 @ 09:24 AM
    Join Date
    31 Jul 2009
    Location
    Nowshera(KP)
    Age
    47
    Gender
    Male
    Posts
    886
    Threads
    10
    Credits
    563
    Thanked
    340

    Default

    Quote creative_eyes said: View Post
    http://www.itdunya.com/t445090/Asalamu alaikum It Members

    Mujhe Excel Me Numaric Amount Ko Word Me Show Karna hi My Ne Net Se Ek Code Download Kia Aur Phir Doveloper Tool Visual Basic Insert Module Me Past Kara....Aur Matloob Cell Me Fourmula Apply Kardia Mugar Ya Code Doller Me Show Horaha Hi Ya Phir Rupees Me Mujhe Riyal Me Show Karna Hi Jahan Rupees Araha Hi Waha Riyal Show Hona.....Screen Shot Is Attached

    Please Help Me ...Is Link Per . P.O Hi

    http://www.itdunya.com/t445090/

    Allah Hafiz
    Press F11,
    Insert k Menu sa Module Select karain aur ya code paste kr dain.

    Code:
    'Main Function
    Function SpellNumber(ByVal MyNumber)
    Dim SaudiRiyal, Halalas, 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 SaudiRiyal amount.
    If DecimalPlace > 0 Then
    Halalas = 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 SaudiRiyal = Temp & Place(Count) & SaudiRiyal
    If Len(MyNumber) > 3 Then
    MyNumber = Left(MyNumber, Len(MyNumber) - 3)
    Else
    MyNumber = ""
    End If
    Count = Count + 1
    Loop
    Select Case SaudiRiyal
    Case ""
    SaudiRiyal = "No SaudiRiyal"
    Case "One"
    SaudiRiyal = "One SaudiRiyal"
    Case Else
    SaudiRiyal = SaudiRiyal & " SaudiRiyal"
    End Select
    Select Case Halalas
    Case ""
    Halalas = " only"
    Case "One"
    Halalas = " and One Halalas"
    Case Else
    Halalas = " and " & Halalas & " Halalas"
    End Select
    SpellNumber = SaudiRiyal & Halalas
    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
    Code ki window ko close krain aur file ko Excel-Macro enable k extention sa save karain.

    Agar code m kuch changes krne hon tu code ko aik bar prh lain aur jahan jahan munasib lage changes kr lain.

    Ya Microsoft ki site visit kr lain aap ko hr Currency k leye code mil jainge.

    regards,

  8. #8
    creative_eyes's Avatar
    creative_eyes is offline Senior Member+
    Last Online
    16th May 2020 @ 06:35 PM
    Join Date
    11 Jul 2008
    Location
    SAUDI ARABIA
    Gender
    Male
    Posts
    307
    Threads
    161
    Credits
    1,001
    Thanked
    22

    Default

    اسلام علیکم آپکا بیت بیت شکریہ

  9. #9
    Sahil_Jaan's Avatar
    Sahil_Jaan is offline V.I.P
    Last Online
    13th April 2024 @ 08:40 PM
    Join Date
    05 Jan 2008
    Gender
    Male
    Posts
    14,710
    Threads
    673
    Credits
    11,234
    Thanked
    1925

    Default

    Quote creative_eyes said: View Post
    اسلام علیکم آپکا بیت بیت شکریہ

Similar Threads

  1. Excel expert guide me...
    By Rizwan Anjum in forum Ask an Expert
    Replies: 7
    Last Post: 13th February 2014, 09:53 PM
  2. Increase undo capacity in excel
    By ISHTIAQ2 in forum English IT Zone
    Replies: 10
    Last Post: 4th August 2013, 10:16 PM
  3. Solved Excel Expert pls help (invitation list)
    By fade in forum Solved Problems (IT)
    Replies: 4
    Last Post: 28th March 2011, 04:02 AM
  4. MS Excel Expert, help plz
    By Hafeez194 in forum Ask an Expert
    Replies: 4
    Last Post: 14th January 2011, 07:28 PM
  5. Help NEDEED Only For Excel Expert
    By kamibest in forum Ask an Expert
    Replies: 4
    Last Post: 6th July 2009, 01:55 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
  •