![]() |
Converting Integers to text
I am having trouble converting an integer to text. I need to place a
leading zero next to the number when it is less than 10. Trying to change this: Print #1, "<html<titlepic" & i & "</title" To this: Print #1, "<html<titlepic" & TEXT(i,"00") & "</title" does not work because the "TEXT" function is not a VBA function. Any suggestions greatly appreciated. Geoff |
Converting Integers to text
Geoff E wrote:
I am having trouble converting an integer to text. I need to place a leading zero next to the number when it is less than 10. Trying to change this: Print #1, "<html<titlepic" & i & "</title" To this: Print #1, "<html<titlepic" & TEXT(i,"00") & "</title" does not work because the "TEXT" function is not a VBA function. Any suggestions greatly appreciated. Geoff In VBA use Format(i,"00") |
Converting Integers to text
Thank you smartin.
Worked a treat. Geoff On Sep 7, 9:41*am, smartin wrote: Geoff E wrote: I am having trouble converting an integer to text. I need to place a leading zero next to the number when it is less than 10. Trying to change this: Print #1, "<html<titlepic" & i & "</title" To this: Print #1, "<html<titlepic" & TEXT(i,"00") & "</title" does not work because the "TEXT" function is not a VBA function. Any suggestions greatly appreciated. Geoff In VBA use Format(i,"00") |
Converting Integers to text
YW. Funny thing is, I often find myself trying to use Format() as a
worksheet function. Doesn't work (^: Geoff E wrote: Thank you smartin. Worked a treat. Geoff On Sep 7, 9:41 am, smartin wrote: Geoff E wrote: I am having trouble converting an integer to text. I need to place a leading zero next to the number when it is less than 10. Trying to change this: Print #1, "<html<titlepic" & i & "</title" To this: Print #1, "<html<titlepic" & TEXT(i,"00") & "</title" does not work because the "TEXT" function is not a VBA function. Any suggestions greatly appreciated. Geoff In VBA use Format(i,"00") |
All times are GMT +1. The time now is 01:16 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com