Тёмный

Excel VBA - Number to Text Function 

TutorialsPoint
Подписаться 3,5 млн
Просмотров 166 тыс.
50% 1

Excel VBA - Number to Text Function
Watch More Videos at:
www.tutorialsp...
Lecture By: Mr. Pavan Lalwani Tutorials Point India Private Limited

Опубликовано:

 

14 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 174   
@PavanLalwani
@PavanLalwani 6 лет назад
Function IntToString(amt As Variant) As Variant Dim FIGURE As Variant Dim LENFIG As Integer Dim i As Integer Dim Str(19) As String Dim tens(9) As String Str(1) = "One" Str(2) = "Two" Str(3) = "Three" Str(4) = "Four" Str(5) = "Five" Str(6) = "Six" Str(7) = "Seven" Str(8) = "Eight" Str(9) = "Nine" Str(10) = "Ten" Str(11) = "Eleven" Str(12) = "Twelve" Str(13) = "Thirteen" Str(14) = "Forteen" Str(15) = "Fifteen" Str(16) = "Sixteen" Str(17) = "Seventeen" Str(18) = "Eighteen" Str(19) = "Nineteen" tens(2) = "Twenty" tens(3) = "Thirty" tens(4) = "Forty" 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 IntToString = "Rupees " ElseIf Val(Left(FIGURE, 9)) = 1 Then IntToString = "Rupee " End If For i = 1 To 3 If Val(Left(FIGURE, 2)) < 20 And Val(Left(FIGURE, 2)) > 0 Then IntToString = IntToString & Str(Val(Left(FIGURE, 2))) ElseIf Val(Left(FIGURE, 2)) > 19 Then IntToString = IntToString & tens(Val(Left(FIGURE, 1))) IntToString = IntToString & Str(Val(Right(Left(FIGURE, 2), 1))) End If If i = 1 And Val(Left(FIGURE, 2)) > 0 Then IntToString = IntToString & " Crore " ElseIf i = 2 And Val(Left(FIGURE, 2)) > 0 Then IntToString = IntToString & " Lakh " ElseIf i = 3 And Val(Left(FIGURE, 2)) > 0 Then IntToString = IntToString & " Thousand " End If FIGURE = Mid(FIGURE, 3) Next i If Val(Left(FIGURE, 1)) > 0 Then IntToString = IntToString & Str(Val(Left(FIGURE, 1))) + " Hundred " End If FIGURE = Mid(FIGURE, 2) If Val(Left(FIGURE, 2)) < 20 And Val(Left(FIGURE, 2)) > 0 Then IntToString = IntToString & Str(Val(Left(FIGURE, 2))) ElseIf Val(Left(FIGURE, 2)) > 19 Then IntToString = IntToString & " " & tens(Val(Left(FIGURE, 1))) IntToString = IntToString & " " & Str(Val(Right(Left(FIGURE, 2), 1))) End If FIGURE = Mid(FIGURE, 4) If Val(FIGURE) > 0 Then IntToString = IntToString & " Paise " If Val(Left(FIGURE, 2)) < 20 And Val(Left(FIGURE, 2)) > 0 Then IntToString = IntToString & Str(Val(Left(FIGURE, 2))) ElseIf Val(Left(FIGURE, 2)) > 19 Then IntToString = IntToString & " " & tens(Val(Left(FIGURE, 1))) IntToString = IntToString & " " & Str(Val(Right(Left(FIGURE, 2), 1))) End If End If FIGURE = amt FIGURE = Format(FIGURE, "FIXED") If Val(FIGURE) > 0 Then IntToString = IntToString & " Only " End If End Function
@bankornheng402
@bankornheng402 5 лет назад
I would like to obtain you code, How could i get it?
@michelquoirin2333
@michelquoirin2333 2 года назад
Thank you so much for your very educative playlist. In your previous video with immediate Window, i changed the name Sheet by worksheet and it worked . Practising each of your tutorials is divine
@rajkumarpalle8217
@rajkumarpalle8217 Год назад
Its was nice explaination.. and nice video. Thank you sir.
@nishkarshkoche9218
@nishkarshkoche9218 Год назад
I didn't got the code can u help me where to find it. It is not given in the description?
@RSJSqUaD
@RSJSqUaD 2 года назад
Very clear and easy understanding. Hats off to your clarity boss
@saineeli4593
@saineeli4593 Год назад
Your way of teach is good ..thank you..and can u share the link about number to text the program.(I need coding about number convert to text),please
@jaswantdn7
@jaswantdn7 6 лет назад
your lessons on VBA are very useful..anybody can learn from these sets of lessons...
@georgeregoo
@georgeregoo 4 года назад
The exact same code can be found on microsoft website.
@seherhashim7293
@seherhashim7293 6 лет назад
Hi. I cannot find the file attached. Can you please attach the file with the code. Thank you
@chiranjeetsarkar891
@chiranjeetsarkar891 8 месяцев назад
I also tried to find it, but can not see it.
@manishmanny2240
@manishmanny2240 2 года назад
Please attached this convert Module code.....Thank you... your all video is easy to understand ...
@bvkksprakasaraju4993
@bvkksprakasaraju4993 4 года назад
Dear Mr Pawan please show where is the note pad to download to copy spell program explaining every minute thing very patiently excellent teaching skill Thank you
@sainathdhampalwar
@sainathdhampalwar 5 лет назад
all videos very nice..... i am not finding any notepad attachment.....plz share the same
@tariqkhan7447
@tariqkhan7447 3 года назад
Many thanks. Could you please let me know how to get amount in words like one lac rupees or eight lac.
@himanshudohare6726
@himanshudohare6726 Год назад
Hello Sir. Thanks for this wonderful playlist. I am not able to the find the note pad file. could you please provide the same.
@johnsonm.v8741
@johnsonm.v8741 2 года назад
Hi, Thank you for your tutorial. Whereas can I have the code so that I can copy. Please help
@ef7496
@ef7496 5 лет назад
Hi , thank you so much for such a useful video, Can you please make a video about how to covert any word to numbers? I am assuming it should be binary numbers or whatever you think it will work.
@arthurreynolds6638
@arthurreynolds6638 11 месяцев назад
Where can I find this code to copy?
@wmfield152
@wmfield152 4 года назад
Which one of these courses am I to buy in order to get the numbers to text code?
@laimichael2440
@laimichael2440 11 месяцев назад
how can i use the same functions across other workbook? tks!
@nazarabbas6956
@nazarabbas6956 3 года назад
Where is the notepad which you have shared? After clicking link I have visit your page but I don't have found so tell me about exact location into the page. Thanks
@tonyolson1962
@tonyolson1962 5 лет назад
How do you get such a large and interactive screen in your background for this presentation? It’s very cool! Are you projecting your computer to a screen?
@jaleelchandumuhammed667
@jaleelchandumuhammed667 4 года назад
Really super Class
@ramanajami4038
@ramanajami4038 2 года назад
Thank you so much , But not able to find the Code in Notepad as you said. will you share me the notepad
@NishantSingh-qf4bf
@NishantSingh-qf4bf 3 года назад
Sir mine is showing compile eror Expected:expression and sir when I put second formula it is showing "#NAME? "
@saineeli4593
@saineeli4593 Год назад
Pleas send the link to download this program ..I need to know the number to text code video
@muhammadkhalil5712
@muhammadkhalil5712 2 года назад
Hi, sir appreciated ♥️ Sir I think you did not mention the code..from where we can copy the code..? Thanks
@HaseebMirza-f8y
@HaseebMirza-f8y 5 месяцев назад
Sir Where can we find the code that you copy pasted . i understood what you did but i believe that was just copy pasting
@DedeSews
@DedeSews 5 лет назад
I am getting an error at the line: Cents = GetTens(Left(Mid(MyNumber, DecimalPlace + 1) & _ "00", 2)) The error says "Compile error: Syntax error" Do you have any suggestions?
@Nxby.Szyslak
@Nxby.Szyslak 5 лет назад
I have the same message!😣
@domainrajud6341
@domainrajud6341 4 года назад
use the below script ------------------------------------------ Option Explicit 'Main Function Function SpellNumber(ByVal MyNumber) Dim Dollars, 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 dollar 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 Dollars = Temp & Place(Count) & Dollars If Len(MyNumber) > 3 Then MyNumber = Left(MyNumber, Len(MyNumber) - 3) Else MyNumber = "" End If Count = Count + 1 Loop Select Case Dollars Case "" Dollars = "Zero Dollars" Case "One" Dollars = "One Dollar" Case Else Dollars = Dollars & " Dollars" End Select Select Case Cents Case "" Cents = " and Zero Cents" Case "One" Cents = " and One Cent" Case Else Cents = " and " & Cents & " Cents" End Select SpellNumber = Dollars & 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
@ruchirmohan2158
@ruchirmohan2158 4 года назад
@@domainrajud6341 thanks bro !!
@vikassethi1240
@vikassethi1240 4 года назад
@@domainrajud6341 Thanks dear
@zahoorsarbandi2982
@zahoorsarbandi2982 Год назад
@@domainrajud6341 Thank you very much
@tesorointeriors4000
@tesorointeriors4000 2 года назад
Thank you so much , But not able to find the Code in Notepad as you said. will you share me the notepad.. Please..
@archi1989
@archi1989 2 года назад
Can you please upload the formula format. It will be really helpful. Thankyou.
@boomideviravishankar857
@boomideviravishankar857 4 года назад
where is the notepad which you have written the code?
@rakeshgoud_hi
@rakeshgoud_hi 4 года назад
Hi Sir, I am unable to find the attachment...please advice
@alkaamin660
@alkaamin660 4 года назад
I don't see the Notepad file as said in the video. Do I have to pay for it or be a member.
@abhishakya5263
@abhishakya5263 4 года назад
Nice video
@harahotta
@harahotta 5 лет назад
This menu is not in regular Excel Is it only exist in Professional version?
@nikitasharma5604
@nikitasharma5604 10 месяцев назад
From where did you get this code please reply
@chiranjeetsarkar891
@chiranjeetsarkar891 8 месяцев назад
No code found, I also checked didi 😊😊
@biccbirgunj5923
@biccbirgunj5923 3 года назад
Will you help to convert the following in excel eg. number format $145.00 into Text format $145.00
@dyseyha9225
@dyseyha9225 5 лет назад
Great man !!!
@RSJSqUaD
@RSJSqUaD 2 года назад
Hi Sir, Could you please send me this notepad codings of number to text function. You're standing in the video hiding the codings
@sureshraveendran5972
@sureshraveendran5972 Год назад
hai sir our excel data base file is in server and it is not converting to numbers it shows on warning "SECURITY RISK Micosoft has blocked macros from running because the source of this file is untrusted" please advise what to do for this
@georgeregoo
@georgeregoo 4 года назад
WHY can't you give the lesson in indian rupees instead of us dollars? this vba code is lifted of mirosoft vba webhelp
@favoratekochar9555
@favoratekochar9555 2 года назад
Please guide how can we write self..instead for copy paste
@aashishsaxena3720
@aashishsaxena3720 4 года назад
Dear need help on formatting a Textbox for a form , of First three alpha, last two numbers separated by a "-" , somewhat (a,a,a,"-" ,n,n) with length of 6
@aashishsaxena3720
@aashishsaxena3720 4 года назад
hv tried ([A-Z]{1,3},"-",[0-9][0-9]
@MrBhopinderkumar
@MrBhopinderkumar 6 лет назад
Nice explain Thanks
@ramyavasanth1398
@ramyavasanth1398 6 лет назад
i couldnt find any attachment
@PetrolGasoil
@PetrolGasoil 8 месяцев назад
Hi sir te link to the code is not available below the video can you please update
@Nxby.Szyslak
@Nxby.Szyslak 5 лет назад
Any help please ! I have this message on my screen Error of compilation Variable not defineted And the word "cents" is selected on virtual basic. What can I do?
@tessbuba5965
@tessbuba5965 3 года назад
Hi, how to replace Dollars to Peso or to use USD instead? Please notice this comment. Thanks a lot.
@rajesht7492
@rajesht7492 4 года назад
where do I find the note pad file referred to in this video
@KamalVasudeva-s8d
@KamalVasudeva-s8d Год назад
good description where is the code
@shaykh_dubai
@shaykh_dubai 4 года назад
I couldn't find the file on your website 😭
@tegaivwighre4716
@tegaivwighre4716 11 месяцев назад
Please paste the link to download Number to text function
@subbaraogun5165
@subbaraogun5165 4 года назад
Any one help whare you get note pad I am unable to see
@vijayverma8515
@vijayverma8515 9 месяцев назад
Function ConvertToText(number As Double) As String Dim units As Variant Dim tens As Variant Dim ones As Variant Dim result As String ' Define arrays for units, tens, and ones places units = Array("", "One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine") tens = Array("", "Ten", "Twenty", "Thirty", "Forty", "Fifty", "Sixty", "Seventy", "Eighty", "Ninety") ones = Array("", "Eleven", "Twelve", "Thirteen", "Fourteen", "Fifteen", "Sixteen", "Seventeen", "Eighteen", "Nineteen") ' Check if the number is zero If number = 0 Then ConvertToText = "Zero" Exit Function End If ' Extract digits from the number Dim hundredsDigit As Integer Dim tensDigit As Integer Dim onesDigit As Integer hundredsDigit = Int((number Mod 1000) / 100) tensDigit = Int((number Mod 100) / 10) onesDigit = Int(number Mod 10) ' Convert hundreds place to text If hundredsDigit > 0 Then result = units(hundredsDigit) & " Hundred" End If ' Convert tens and ones places to text If tensDigit > 1 Then result = result & " " & tens(tensDigit) If onesDigit > 0 Then result = result & " " & units(onesDigit) End If ElseIf tensDigit = 1 Then result = result & " " & ones(onesDigit) ElseIf onesDigit > 0 Then result = result & " " & units(onesDigit) End If ' Trim leading and trailing spaces ConvertToText = Trim(result) End Function You can also generate this code from Chat GPT.
@umeshlangade9231
@umeshlangade9231 6 лет назад
Hello, There is no attachment, kindly share.
@singhsk91
@singhsk91 4 года назад
Option Explicit 'Main Function Function SpellNumber(ByVal MyNumber) Dim Dollars, 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 dollar 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 Dollars = Temp & Place(Count) & Dollars If Len(MyNumber) > 3 Then MyNumber = Left(MyNumber, Len(MyNumber) - 3) Else MyNumber = "" End If Count = Count + 1 Loop Select Case Dollars Case "" Dollars = "No Dollars" Case "One" Dollars = "One Dollar" Case Else Dollars = Dollars & " Dollars" End Select Select Case Cents Case "" Cents = " and No Cents" Case "One" Cents = " and One Cent" Case Else Cents = " and " & Cents & " Cents" End Select SpellNumber = Dollars & 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 Copy and paste in module. do it. Function SpellNumber
@Ypushphakumar
@Ypushphakumar 4 месяца назад
@@singhsk91 Thankyou so much sir
@alextjohn1
@alextjohn1 9 месяцев назад
Sir... I need your help. i need to change Doller and cents change Indian rupees and paisa . How it is possible? "Indian Rupees" how it's come? can you pls explain me
@abduls7301
@abduls7301 4 года назад
where is the number t o text code? please ?
@VenkateshB23064
@VenkateshB23064 3 года назад
Can you please explain this above code in detail in another video?
@baruwacampus1838
@baruwacampus1838 3 года назад
would you provide vb codes to convert numbers upto 50 only?
@girishhn6640
@girishhn6640 6 месяцев назад
I couldn't able to find the attached notepad, please share the like
@bhoboghure7393
@bhoboghure7393 4 года назад
Sir How can i write only: "Fifty Thousand and cents thirty only" by using this formula...
@firstdealtradingcontractin2724
@firstdealtradingcontractin2724 2 года назад
How to put the word "only" at the end of the amount.
@hemantgoyal409
@hemantgoyal409 4 года назад
Hello sir ..how I can search names in my database with same sounding and different spelling..like John and Jon.. Deepak and dipak..please guide
@harshabandaru6321
@harshabandaru6321 3 года назад
There is no code attached from your video reference bro...
@commanderwondwossen8589
@commanderwondwossen8589 4 года назад
where is the notepad.please attach it
@shafeekabds3034
@shafeekabds3034 4 года назад
could you please provide the Attachment ? i couldn't find the same here
@Deepratan27
@Deepratan27 2 года назад
It's working only single open file, if again open fresh excel it's not working
@mukeshkumar-ch6jg
@mukeshkumar-ch6jg 4 года назад
ReDim place(9) As String line compile error can't find project or library in excel 2010
@manmohandeol4908
@manmohandeol4908 6 лет назад
Respected Sir, With due respect . i would like to thanks from the core of hart. Your working is too good many persons learn from your videos like me. i have to write due to a problem that some micro module working in my office PC but not in my home PC bout have same window of office 2010 please help
@Vishalsharma-xj3ej
@Vishalsharma-xj3ej 4 года назад
How to change currency type from dollar to rupees? Please explain
@patilpatil8262
@patilpatil8262 4 года назад
where is the code in notepad????????? not found in a video description.
@sujanujgowda4534
@sujanujgowda4534 6 лет назад
No file attached and I searched in your portal as well, please share
@md.selimreza6796
@md.selimreza6796 4 года назад
Can i get the formula of no to word
@sethumadhavan375
@sethumadhavan375 4 года назад
Please attach the Notepad mentioned in the video.
@dineshgajbhiye9507
@dineshgajbhiye9507 3 года назад
Pls share the notepad for number to text macro
@chhunsokheng1
@chhunsokheng1 5 лет назад
Number to text coz. How to find it? Can you tell me?
@sureshrao8116
@sureshrao8116 2 года назад
am searching no notepad file is not in below the this file
@hijratsail581
@hijratsail581 2 года назад
I cant received any attached here can you help me
@yuvrajprajapati6549
@yuvrajprajapati6549 4 года назад
I couldn't find the developer option
@hrishikeshchaudhari2456
@hrishikeshchaudhari2456 4 года назад
Please share VBA code notepad
@chhunsokheng1
@chhunsokheng1 5 лет назад
Hi brother how to find it? (Text coz)
@snnsr3
@snnsr3 3 года назад
will you please share this code with us ?
@chiragdixit7178
@chiragdixit7178 2 года назад
i can not find the attached notpad file
@aravaanent1654
@aravaanent1654 2 года назад
can you share file for kenya shillings
@saran2135
@saran2135 4 года назад
Can you please share the notepad code again we r unable to view
@anamkounain2289
@anamkounain2289 4 месяца назад
Can u give the code
@hamzamushtaq7790
@hamzamushtaq7790 4 года назад
Brother how can i get note pad file.?
@Sayanerzee
@Sayanerzee 2 года назад
Sir, where is the notepad??????
@gunadmtdomains
@gunadmtdomains 4 года назад
No attachment is here please share me.
@seemakaushal2212
@seemakaushal2212 4 года назад
where is the code notepad , din find please help
@finance_talks_with_shikha
@finance_talks_with_shikha Год назад
i couldn't fine the notepad file
@filtrontechniques5488
@filtrontechniques5488 4 года назад
sir....where is the notepad coding
@nabinbhurtel9369
@nabinbhurtel9369 4 года назад
You can find the code to convert numbers to text in following Website. www.myonlinetraininghub.com/convert-numbers-currency-to-words-with-excel-vba
@tanmoyroy1505
@tanmoyroy1505 4 года назад
Thank you Nabin.
@satheeshraju716
@satheeshraju716 2 года назад
how can convert dollars to rupees..
@sanjeevthakur8910
@sanjeevthakur8910 4 года назад
What you didnt tell how to convert Dollars to rupees..and cent to paise...
@kooora8689
@kooora8689 4 года назад
Hello I saw this function but I want to write in French I want a French fuction Thank you
@sabinjoshi007
@sabinjoshi007 4 года назад
There is a library available to do it in French in Google sheets.. Instructions available in this video. ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-ZYkt3jduwAY.html
@atharva6051
@atharva6051 4 года назад
Where is the attachment
@musebshaikh7617
@musebshaikh7617 3 года назад
Invoice No=01 Now suppose I am working for January. then I need my invoice Number to increase by 1 after that if the month changes to February then again my invoice Number should start from 1 and get increase by 1 for each new invoice. It should follow the same every time the month get's changed. what is the possible vba code for this. please reply
@jaykukreja8600
@jaykukreja8600 4 года назад
Not able to see any attachment
@prakashpurohit4781
@prakashpurohit4781 4 года назад
दो हज़ार तीन सौ एक कैसे लिखें ये हिंदी में भी करदे तो मज़ा आ जाये
@surajyadav-jk4ni
@surajyadav-jk4ni 4 года назад
Can I get number to text notepad please
@sagarmicrosoftoffice1225
@sagarmicrosoftoffice1225 Год назад
I didn't get that notepad file