mattloflin
MIS
Hey guys I currently have a macro and it sets three columns to a certain name
once it runs I save this as a .TXT and then I am going to import it into a program.
However this program doesn't like the "" I have to go manually delete the "" from how ever many lines.
My question:
Is there any way I can delete the "" from the export file?
Thanks guys!
- Matt
"Never Give a Sword to a Man Who Can't Dance
Code:
Range("A1:A" & newlastrow).Value = "PROBEPOINTTEST,"
Range("C1:C" & newlastrow).Value = ",COLOR,"
Range("E1:E" & newlastrow).Value = ",LABEL,"
once it runs I save this as a .TXT and then I am going to import it into a program.
However this program doesn't like the "" I have to go manually delete the "" from how ever many lines.
My question:
Is there any way I can delete the "" from the export file?
Thanks guys!
- Matt
"Never Give a Sword to a Man Who Can't Dance