Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi to all.
I need some help with exporting excel data to text file, I have data in cells, I have a code for only returning max of 12 characters, this is fine and working, but the cells that have below 12 characters I need these cells to padded out with spaces so that when I export to a text file it looks like columns in the text file. Can anyone help me with this Regards |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
myString = Left(myString & Space(12), 12)
"santaviga" skrev i meddelelsen ... Hi to all. I need some help with exporting excel data to text file, I have data in cells, I have a code for only returning max of 12 characters, this is fine and working, but the cells that have below 12 characters I need these cells to padded out with spaces so that when I export to a text file it looks like columns in the text file. Can anyone help me with this Regards |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How do I input this into a cell to operate???
Thanks "Lazzzx" wrote: myString = Left(myString & Space(12), 12) "santaviga" skrev i meddelelsen ... Hi to all. I need some help with exporting excel data to text file, I have data in cells, I have a code for only returning max of 12 characters, this is fine and working, but the cells that have below 12 characters I need these cells to padded out with spaces so that when I export to a text file it looks like columns in the text file. Can anyone help me with this Regards |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In the macro code (you are using a macro, right?) that is now returning your
max of 12 characters, replace whatever is doing the truncating (it should be using the Left function) with the code line Lazzzx gave you (substituting the variable name or cell value reference used in your current formula for the myString example variable Lazzzx gave you; assigning it to whatever variable you are currently assigning it to). Usually if you are going to refer to code (or a formula on the spreadsheet side of things), it is a good idea to post that code (or formula) rather than make an off-hand reference to it; that way, we can post the modification to it instead of giving a general example for you to try and implement. Rick "santaviga" wrote in message ... How do I input this into a cell to operate??? Thanks "Lazzzx" wrote: myString = Left(myString & Space(12), 12) "santaviga" skrev i meddelelsen ... Hi to all. I need some help with exporting excel data to text file, I have data in cells, I have a code for only returning max of 12 characters, this is fine and working, but the cells that have below 12 characters I need these cells to padded out with spaces so that when I export to a text file it looks like columns in the text file. Can anyone help me with this Regards |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am not using a macro, my company doesn't allow them, is there any other way
to do this?? "Rick Rothstein (MVP - VB)" wrote: In the macro code (you are using a macro, right?) that is now returning your max of 12 characters, replace whatever is doing the truncating (it should be using the Left function) with the code line Lazzzx gave you (substituting the variable name or cell value reference used in your current formula for the myString example variable Lazzzx gave you; assigning it to whatever variable you are currently assigning it to). Usually if you are going to refer to code (or a formula on the spreadsheet side of things), it is a good idea to post that code (or formula) rather than make an off-hand reference to it; that way, we can post the modification to it instead of giving a general example for you to try and implement. Rick "santaviga" wrote in message ... How do I input this into a cell to operate??? Thanks "Lazzzx" wrote: myString = Left(myString & Space(12), 12) "santaviga" skrev i meddelelsen ... Hi to all. I need some help with exporting excel data to text file, I have data in cells, I have a code for only returning max of 12 characters, this is fine and working, but the cells that have below 12 characters I need these cells to padded out with spaces so that when I export to a text file it looks like columns in the text file. Can anyone help me with this Regards |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I figured you were using a macro because you said you have "code" (a
formula, assuming that is what you meant, is not code) and you posted your question in a programming newsgroup. Anyway, referencing my last paragraph for emphasis... how are you now returning your maximum of 12 characters (that is, what is the "code" or formula being used)? Rick "santaviga" wrote in message ... I am not using a macro, my company doesn't allow them, is there any other way to do this?? "Rick Rothstein (MVP - VB)" wrote: In the macro code (you are using a macro, right?) that is now returning your max of 12 characters, replace whatever is doing the truncating (it should be using the Left function) with the code line Lazzzx gave you (substituting the variable name or cell value reference used in your current formula for the myString example variable Lazzzx gave you; assigning it to whatever variable you are currently assigning it to). Usually if you are going to refer to code (or a formula on the spreadsheet side of things), it is a good idea to post that code (or formula) rather than make an off-hand reference to it; that way, we can post the modification to it instead of giving a general example for you to try and implement. Rick "santaviga" wrote in message ... How do I input this into a cell to operate??? Thanks "Lazzzx" wrote: myString = Left(myString & Space(12), 12) "santaviga" skrev i meddelelsen ... Hi to all. I need some help with exporting excel data to text file, I have data in cells, I have a code for only returning max of 12 characters, this is fine and working, but the cells that have below 12 characters I need these cells to padded out with spaces so that when I export to a text file it looks like columns in the text file. Can anyone help me with this Regards |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do i find specific data in a cell and its colocated cell data | Excel Worksheet Functions | |||
converting numerical data in one cell to word data in another cell | Excel Worksheet Functions | |||
how to find number in a cell , a cell contains character data ornumeric data | Excel Worksheet Functions | |||
Find MAX data in sheet (Cell) - Any cell that exceeds X amount of data | Excel Discussion (Misc queries) | |||
data validation to restrict input in cell based on value of cell above that cell | Excel Programming |