If i have info in excel formatted as text the info looks like this 12-1 or 10-2 it needs to be formatted as text so it is displayed like that, otherwise by default it turns into a date....
im having an issue here where if i use the code below to that that info as a csv file, in the csv it auto changes that ifo to dates on me...... i wish that microsoft wouldnt assume they know what i want... any way around this?
im having an issue here where if i use the code below to that that info as a csv file, in the csv it auto changes that ifo to dates on me...... i wish that microsoft wouldnt assume they know what i want... any way around this?
Code:
Sheets("Sheet2").Copy
ThisFile = Range("C3").Value
ActiveWorkbook.SaveAs Filename:="C:\Documents and Settings\chipfab\Desktop\Jared FC Project\Runsheets\FC Runs\Finished Runs\" & ThisFile, FileFormat:=xlCSV, CreateBackup:=False
ActiveWorkbook.Close
MsgBox "Run Saved"