VBA Print and spaces

galore

New Member
Joined
Sep 21, 2009
Messages
9
Hi,

When I use the print command on VBA to get the content from a cell and write it in a text file, I have a problem:

I always get a lot of spaces before and after the caracters (the number varies 3-13)

How can I get rid off the blank characters?

Print #1, MyVar, Insert, c

PD: When I use write I always get "" in many cells that I do not need.

Thanks
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
I have found this code, but it is not a macro:

Function NoNumSpaces(S As String) As String
Dim X As Long
NoNumSpaces = WorksheetFunction.Trim(S)
For X = Len(NoNumSpaces) To 1 Step -1
If Mid(NoNumSpaces, X, 3) Like "# #" Then NoNumSpaces = WorksheetFunction.Replace(NoNumSpaces, X + 1, 1, "")
Next
End Function
 
Upvote 0
I have found this code, but it is not a macro:

Function NoNumSpaces(S As String) As String
Dim X As Long
NoNumSpaces = WorksheetFunction.Trim(S)
For X = Len(NoNumSpaces) To 1 Step -1
If Mid(NoNumSpaces, X, 3) Like "# #" Then NoNumSpaces = WorksheetFunction.Replace(NoNumSpaces, X + 1, 1, "")
Next
End Function
 
Upvote 0

Forum statistics

Threads
1,215,472
Messages
6,125,005
Members
449,203
Latest member
Daymo66

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top