Change the number to Word in Excel with this formula

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 ม.ค. 2025

ความคิดเห็น • 915

  • @akashzagade3487
    @akashzagade3487 2 ปีที่แล้ว +3

    Bhaiiiiii........Awesome........Thanks a lot....

  • @amritapotdar5518
    @amritapotdar5518 ปีที่แล้ว +7

    After watching so many videos this was very useful and easy for a non-expert Excel user like me. Thanks a lot for the Video.

  • @sk.rahatilraihan33
    @sk.rahatilraihan33 2 ปีที่แล้ว +3

    Thanks for sharing your creation. Keep sharing new creations.

  • @nayanparmar9127
    @nayanparmar9127 6 หลายเดือนก่อน +11

    Function SpellNumber(amt As Variant) As Variant
    Dim FIGURE As Variant
    Dim LENFIG As Integer
    Dim i As Integer
    Dim WORDs(19) As String
    Dim tens(9) As String
    WORDs(1) = "One"
    WORDs(2) = "Two"
    WORDs(3) = "Three"
    WORDs(4) = "Four"
    WORDs(5) = "Five"
    WORDs(6) = "Six"
    WORDs(7) = "Seven"
    WORDs(8) = "Eight"
    WORDs(9) = "Nine"
    WORDs(10) = "Ten"
    WORDs(11) = "Eleven"
    WORDs(12) = "Twelve"
    WORDs(13) = "Thirteen"
    WORDs(14) = "Fourteen"
    WORDs(15) = "Fifteen"
    WORDs(16) = "Sixteen"
    WORDs(17) = "Seventeen"
    WORDs(18) = "Eighteen"
    WORDs(19) = "Nineteen"
    tens(2) = "Twenty"
    tens(3) = "Thirty"
    tens(4) = "Fourty"
    tens(5) = "Fifty"
    tens(6) = "Sixty"
    tens(7) = "Seventy"
    tens(8) = "Eighty"
    tens(9) = "Ninety"
    FIGURE = amt
    FIGURE = Format(FIGURE, "FIXED")
    FIGLEN = Len(FIGURE)
    If FIGLEN < 12 Then
    FIGURE = Space(12 - FIGLEN) & FIGURE
    End If
    If Val(Left(FIGURE, 9)) > 1 Then
    SpellNumber = "Rupees "
    ElseIf Val(Left(FIGURE, 9)) = 1 Then
    SpellNumber = "Rupee "
    End If
    For i = 1 To 3
    If Val(Left(FIGURE, 2)) < 20 And Val(Left(FIGURE, 2)) > 0 Then
    SpellNumber = SpellNumber & WORDs(Val(Left(FIGURE, 2)))
    ElseIf Val(Left(FIGURE, 2)) > 19 Then
    SpellNumber = SpellNumber & tens(Val(Left(FIGURE, 1)))
    SpellNumber = SpellNumber & WORDs(Val(Right(Left(FIGURE, 2), 1)))
    End If
    If i = 1 And Val(Left(FIGURE, 2)) > 0 Then
    SpellNumber = SpellNumber & " Crore "
    ElseIf i = 2 And Val(Left(FIGURE, 2)) > 0 Then
    SpellNumber = SpellNumber & " Lakh "
    ElseIf i = 3 And Val(Left(FIGURE, 2)) > 0 Then
    SpellNumber = SpellNumber & " Thousand "
    End If
    FIGURE = Mid(FIGURE, 3)
    Next i
    If Val(Left(FIGURE, 1)) > 0 Then
    SpellNumber = SpellNumber & WORDs(Val(Left(FIGURE, 1))) + " Hundred "
    End If
    FIGURE = Mid(FIGURE, 2)
    If Val(Left(FIGURE, 2)) < 20 And Val(Left(FIGURE, 2)) > 0 Then
    SpellNumber = SpellNumber & WORDs(Val(Left(FIGURE, 2)))
    ElseIf Val(Left(FIGURE, 2)) > 19 Then
    SpellNumber = SpellNumber & tens(Val(Left(FIGURE, 1)))
    SpellNumber = SpellNumber & WORDs(Val(Right(Left(FIGURE, 2), 1)))
    End If
    FIGURE = Mid(FIGURE, 4)
    If Val(FIGURE) > 0 Then
    SpellNumber = SpellNumber & " Paise "
    If Val(Left(FIGURE, 2)) < 20 And Val(Left(FIGURE, 2)) > 0 Then
    SpellNumber = SpellNumber & WORDs(Val(Left(FIGURE, 2)))
    ElseIf Val(Left(FIGURE, 2)) > 19 Then
    SpellNumber = SpellNumber & tens(Val(Left(FIGURE, 1)))
    SpellNumber = SpellNumber & WORDs(Val(Right(Left(FIGURE, 2), 1)))
    End If
    End If
    FIGURE = amt
    FIGURE = Format(FIGURE, "FIXED")
    If Val(FIGURE) > 0 Then
    SpellNumber = SpellNumber & " Only "
    End If
    End Function

  • @harshasai-sivakumar6575
    @harshasai-sivakumar6575 ปีที่แล้ว

    Wonderful ❤❤❤❤❤❤❤ super thank you sooo much

  • @Arushi1501
    @Arushi1501 4 ปีที่แล้ว +4

    Sir apne bhut achhe se formula bnaya h ek bar m hi work kr gya thank you so much other video m se maine formula try kiya tha toh error aa rha tha bar bar par apka video dekhkr formula lgaya ek bar m hi work kiya thank you Sir

  • @TheSinghBroadcast
    @TheSinghBroadcast ปีที่แล้ว

    Great Boss 👍👍

  • @vipinbajaj3213
    @vipinbajaj3213 3 ปีที่แล้ว +3

    Beautifully explained with complete file. Thx a ton's from my side

  • @fawadabbasi-r4v
    @fawadabbasi-r4v ปีที่แล้ว

    very good lecture 100% effective i did it...................................thanks Dear

  • @krishnapatil5296
    @krishnapatil5296 3 ปีที่แล้ว +4

    Formula save karne ke bad sub execl sheet me work ho jayega kya,
    Ki har naye sheet mein fir se process karna padega.

    • @ZalasEducationZone
      @ZalasEducationZone 3 ปีที่แล้ว

      No ho jaega fir save kar le us bill se new bill ko save as karna

  • @mohankirti
    @mohankirti ปีที่แล้ว

    Superb.. worked as shown.. thanks

  • @varunagarwal8848
    @varunagarwal8848 2 ปีที่แล้ว +8

    It was so well explained step by step and I was absolutely able to do it all comfortably without a single doubt.
    Bas aapse ek request hai.
    I couldn’t capitalise all the alphabets as main invoicing mein Har alphabet capital karta hoon.
    Much appreciated 🙏🏻

  • @Vinod_Surushe
    @Vinod_Surushe 2 ปีที่แล้ว

    Kay bat hai Bhai , man Gaye 🥰🥰🤗

  • @francisdsouza4206
    @francisdsouza4206 3 ปีที่แล้ว +4

    very well explained Sir. Thanks a lot for sharing your valuable information. the only thing is that there is no space coming 2 digit numbers. it's like this EightyFour. It should be like this Eighty Four. Anyway Thanks a Lot.

    • @ashoksoumi
      @ashoksoumi 2 ปีที่แล้ว

      In text file replace "One" with "one " and do the same for all the numbers mentioned.

    • @skrasid7650
      @skrasid7650 2 ปีที่แล้ว

      @Ashok Soumi
      It won't be done
      @Francis Dsouza
      Please mail me , I'll explain you 😊

  • @shabrotherss
    @shabrotherss 9 หลายเดือนก่อน

    Thank you boss. Superb tutorial.

  • @takotari5352
    @takotari5352 ปีที่แล้ว +11

    This formula works only that particular page only. Doesn't apply to other new open Excel sheet.

  • @sukhmindersinghsidhu1502
    @sukhmindersinghsidhu1502 หลายเดือนก่อน +1

    Very good information, it's really works

  • @pritamsingh1012
    @pritamsingh1012 4 ปีที่แล้ว +3

    How to remove rupees
    I have no need to write currency

  • @QuickLearn2307
    @QuickLearn2307 2 ปีที่แล้ว

    Great Bhai, Huge Thanks.

  • @lifesavingsocietyofindia808
    @lifesavingsocietyofindia808 3 ปีที่แล้ว +9

    If you can kindly remove the "Rupees" and "only" from the coding and share us the link, it would be extremely helpful!

    • @ashoksoumi
      @ashoksoumi 2 ปีที่แล้ว

      Open text file and wherever "rupee","rupees","only" are there, replace them with ""
      👍🏽

    • @samarpitgupta3212
      @samarpitgupta3212 2 ปีที่แล้ว +1

      Amount ke baad rupees lagate hai wo kaise add hoga is formule mai?

    • @rassalrahman1245
      @rassalrahman1245 ปีที่แล้ว

      there you can change it use

  • @SaurabhDiwedi-ut5fv
    @SaurabhDiwedi-ut5fv ปีที่แล้ว

    wow,,,So usefull...!Thankyou so much for this useful info.

  • @naseeruddinfaraz1433
    @naseeruddinfaraz1433 ปีที่แล้ว

    Love you Sir.❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤

  • @sakeforvous
    @sakeforvous 2 หลายเดือนก่อน

    Super Bro, Ultimate. Thanks

  • @vikassaini359
    @vikassaini359 3 ปีที่แล้ว +1

    Its Working thanks sir for very well explained

  • @roychowdhurys1608
    @roychowdhurys1608 9 หลายเดือนก่อน

    Superb!! very easy to use. thank you

  • @SAQIB-TOORI
    @SAQIB-TOORI ปีที่แล้ว

    just lovely and helpful . loving

  • @murthyrt7546
    @murthyrt7546 18 วันที่ผ่านมา

    thank you so much sir, i worked like a butter smooth, after this happened , i felt like a pro coder. wow love u sir. it took me almost 10 years to know this. i was using app called numbers to word n used to copy paste . thanks again sir,

  • @theperfectimperfection3597
    @theperfectimperfection3597 ปีที่แล้ว +1

    Fantastically explained! Appreciated... Thank you.

  • @grafiqeinterio1088
    @grafiqeinterio1088 2 ปีที่แล้ว +1

    Thank you, bro
    God bless you

  • @explore.kashmir26
    @explore.kashmir26 2 หลายเดือนก่อน

    Thank you so much... It takes 2 minutes only... U deserve like and subscribe❤❤

  • @InDuniLH
    @InDuniLH 10 หลายเดือนก่อน

    wow thank you very much for this video.

  • @DipankarMondal-fz6hv
    @DipankarMondal-fz6hv ปีที่แล้ว

    Thank you for sharing this information with us...🙏🏻🙏🏻🙏🏻

  • @MOHAMMADIMRAN-k2i
    @MOHAMMADIMRAN-k2i ปีที่แล้ว

    My dear brother, I very impressed with your first video, so I decided to subscribe your channel and press all bell icon. I hope you will help me more in future. May creator of universe make you better in your field.

  • @binduuchiha8587
    @binduuchiha8587 10 หลายเดือนก่อน

    Bhai u r a lifesaver😊

  • @MaHaNoor-l6s
    @MaHaNoor-l6s 2 หลายเดือนก่อน

    Very informative vedio ❤and special thanks for Code 🎉

  • @ghanshyamrvaghasiya
    @ghanshyamrvaghasiya 9 หลายเดือนก่อน

    Thank you Boss. You have saved my time.

  • @nomanbasharat7382
    @nomanbasharat7382 2 ปีที่แล้ว

    Thanks for the code and video. its really helpfull

  • @jimmydulatzai
    @jimmydulatzai 5 หลายเดือนก่อน

    Great man......God Bless you.

  • @healthy-info
    @healthy-info 11 หลายเดือนก่อน

    Thank you so much.
    Very informative and useful video.

  • @shaileshgupta4506
    @shaileshgupta4506 ปีที่แล้ว

    Very nicely explained. Thanks🍫...God Bless...

  • @nitinkamble6308
    @nitinkamble6308 2 ปีที่แล้ว

    Thank you sir for the best video

  • @abhijitchakrabarty384
    @abhijitchakrabarty384 4 หลายเดือนก่อน

    Excellent ❤ Thank You So Much Brother

  • @rajdeepsinh1996
    @rajdeepsinh1996 3 ปีที่แล้ว

    Thank you sir.. Helpful information it's work

  • @anantjosain6816
    @anantjosain6816 3 ปีที่แล้ว +1

    Thanks Its working good job done by u

  • @pawanvashishth8934
    @pawanvashishth8934 8 วันที่ผ่านมา

    informative video 👏

  • @MohanSontiyal
    @MohanSontiyal 10 หลายเดือนก่อน

    Tnx a lot for this informative vdo

    • @mohansontiyal3830
      @mohansontiyal3830 10 หลายเดือนก่อน

      But ek problem aa rhi h jese hm excel m coding dal rhe h to proper Kam kr rha h but excel close krte h or excel again open karte h to wo formula work nhi kr rha h pls solution dijiye

  • @lionelusa763
    @lionelusa763 2 ปีที่แล้ว

    C Tech, you are wonderful. Good job and keep up. I super appreciate this work.

  • @svcprasad
    @svcprasad ปีที่แล้ว

    Wow bro Amaizing

  • @hirajaweed
    @hirajaweed ปีที่แล้ว

    I really appreciated your work, Jazak Allah

  • @vengsaga676
    @vengsaga676 ปีที่แล้ว

    Useful tips, Thanks.

  • @mskhussain
    @mskhussain 2 ปีที่แล้ว

    Great Work Brother....Your video was an Timely help

  • @shaikh358
    @shaikh358 2 ปีที่แล้ว +1

    Great.....thanks a lot

  • @speedbrain123
    @speedbrain123 9 หลายเดือนก่อน

    Thanks for sharing code.

  • @k.g.maheshwar
    @k.g.maheshwar 4 ปีที่แล้ว

    Bhaiya jee bahut achha jankari diye dhanywad

  • @oshinmarya.v1840
    @oshinmarya.v1840 10 หลายเดือนก่อน

    Thank you for this easy explanation

  • @vidyadharkumar5701
    @vidyadharkumar5701 4 หลายเดือนก่อน

    बहुत useful वीडियो है। Thanks।

  • @DigitalOps-p5v
    @DigitalOps-p5v 3 หลายเดือนก่อน

    gajab guru..maan gaye bahoot badi prob solve kar di

  • @Sam-ly2gu
    @Sam-ly2gu 4 หลายเดือนก่อน

    thank you so much ...this video is very useful for me ....😊

  • @skkakar
    @skkakar 2 ปีที่แล้ว

    Thanks a lot, you solved my problem I was looking for this formula. Regards

  • @SanthoshKumar-xy3zm
    @SanthoshKumar-xy3zm ปีที่แล้ว

    Thank you very much Sir🙏🙏🙏🙏🙏

  • @maniacmani1969
    @maniacmani1969 9 หลายเดือนก่อน

    Thankyou for the tricks

  • @yogeshsalunke127
    @yogeshsalunke127 2 ปีที่แล้ว +1

    Thank you very much, appreciated.

  • @uttamchaulagain1138
    @uttamchaulagain1138 ปีที่แล้ว

    Thank You sir.. My problem is solved...

  • @gaurangpatel1992
    @gaurangpatel1992 2 ปีที่แล้ว +1

    thanks bro. complete work in my office 2013

    • @C-TECH
      @C-TECH  2 ปีที่แล้ว +1

      Welcome 👍

  • @MuntazDoddamani
    @MuntazDoddamani ปีที่แล้ว

    salute you sir

  • @atulsharma-ho6li
    @atulsharma-ho6li 2 ปีที่แล้ว

    Thank you sir very useful formula

  • @anchorpoint483
    @anchorpoint483 2 ปีที่แล้ว

    Great work bro, it will very helpful for me

  • @caadeshharishshah5812
    @caadeshharishshah5812 ปีที่แล้ว

    thank you sir, very helpful

  • @TNSverse
    @TNSverse 3 หลายเดือนก่อน

    Thank you so much you are the best.

  • @Sindhisongoffical
    @Sindhisongoffical ปีที่แล้ว

    It's work thanks 🙏🙏🙏

  • @farooqnoor786
    @farooqnoor786 ปีที่แล้ว

    Awesome dear
    God bless you, step by step well explained formula
    a lot of prayers to you

  • @Aleenaartandcraft
    @Aleenaartandcraft 2 ปีที่แล้ว

    Nice work it's very eazy

  • @PradeepKumar-wm6yi
    @PradeepKumar-wm6yi 6 หลายเดือนก่อน

    Thanks sir 👌 problem solved

  • @SureshKumar-ld9lc
    @SureshKumar-ld9lc ปีที่แล้ว

    Thank you !!! works like charm.

  • @AsifKhan-et5fb
    @AsifKhan-et5fb 3 ปีที่แล้ว

    Sir aapki ye video dekh kar mera kam asan ho gaya me bohot TH-cam pe video dekha kisi ka formula kam nahi aata tha par aapka 1 he baar dekha or formula kam aaya thanks for help me aap aise he acche acche video banate raho

  • @aniketrohila6590
    @aniketrohila6590 ปีที่แล้ว

    thanks for this explained

  • @jagiyamanoban8022
    @jagiyamanoban8022 3 ปีที่แล้ว +1

    Thankyou so much this vid is a big help

  • @JayeshSarankar
    @JayeshSarankar 10 หลายเดือนก่อน

    Thank you for sharing..

  • @Ramya-ur7of
    @Ramya-ur7of 2 ปีที่แล้ว

    Super very useful information thank you 🙂

  • @sriraoautoagenciessri88
    @sriraoautoagenciessri88 6 หลายเดือนก่อน

    GREAT WORK THANK YOU SIRJEE

  • @gsureshkumar8698
    @gsureshkumar8698 7 หลายเดือนก่อน

    Thank you very much sir
    Excellent

  • @RajanKumar-dh3ox
    @RajanKumar-dh3ox 2 ปีที่แล้ว

    thank you so much
    really great help

  • @RiderHarsh6191
    @RiderHarsh6191 ปีที่แล้ว

    Thnks a Lot Brother :)

  • @rominmenezesromin3
    @rominmenezesromin3 ปีที่แล้ว

    Very useful bro thank u

  • @abhijitmitra184
    @abhijitmitra184 หลายเดือนก่อน

    Thank you for the coding

  • @priyalshah6648
    @priyalshah6648 2 ปีที่แล้ว

    Bohot mast video hai

  • @SantoshGupta-nm2od
    @SantoshGupta-nm2od ปีที่แล้ว

    Thankyou for you information

  • @ramlaalgaming9424
    @ramlaalgaming9424 6 หลายเดือนก่อน

    Nice... It's working

  • @alikhan-gl9gw
    @alikhan-gl9gw ปีที่แล้ว

    it was easy to understand and it worked just by trying once

  • @AtharvGST
    @AtharvGST 2 ปีที่แล้ว +1

    Thanks sir... 🙏🙏

  • @govthssezhur732
    @govthssezhur732 3 ปีที่แล้ว

    Thanks. Good Video

  • @IrfanKhan-iz7kd
    @IrfanKhan-iz7kd ปีที่แล้ว

    Thank you very much sir...

  • @NUSRAT1OVR2
    @NUSRAT1OVR2 หลายเดือนก่อน

    Thanks a Lot dear

  • @AjaySagar-kv3el
    @AjaySagar-kv3el ปีที่แล้ว

    GaZB 😍😍😍😍

  • @reachcarriers9844
    @reachcarriers9844 2 ปีที่แล้ว

    its very helpful and easy

  • @abdulbasitrajpoot8534
    @abdulbasitrajpoot8534 2 ปีที่แล้ว +1

    Good effort

  • @playstoredaniel
    @playstoredaniel 3 ปีที่แล้ว +1

    Than k you Sir. It works.

  • @hirengor2909
    @hirengor2909 ปีที่แล้ว

    Thanks alot for sharing the Codes.

    • @samaahmad8877
      @samaahmad8877 5 หลายเดือนก่อน

      where are the codes?

  • @abhilashsinha9302
    @abhilashsinha9302 2 ปีที่แล้ว

    Excellent! एक छोटे से फार्मूला के लिए कितना बड़ा कोडिंग आपने किया है! बहुत अच्छे!

  • @swanandjoshi1992
    @swanandjoshi1992 8 หลายเดือนก่อน

    Just saw your video and tried in excel, its successful. Thank you so much Sir 🙏

    • @s4shan894
      @s4shan894 2 หลายเดือนก่อน

      What about coding