somebody113
New Member
- Joined
- Apr 28, 2011
- Messages
- 14
Crossposted:
http://www.excelforum.com/excel-pro...otes-csv-from-specific-sheet.html#post2640656
http://www.ozgrid.com/forum/showthread.php?t=159930&p=584135#post584135
http://www.mrexcel.com/forum/showthread.php?p=2927315#post2927315
Hey Guys,
Struggling here with the double quotes in CSV. All I want to do is:
1. Export double quotes properly in CSV
2. Export specific sheets
I've attached a file from my FTP:
http://www.jyxsaw.com/ZCOU/ACNOVdem.xlsx
I just want to export the double quoted values in Sheets p1 & p2
I've found the following macros on other sites but are to no avail:
1. This one just doesn't seem to work and does not allow me to specify the sheet that I'm trying to dump
This one does work but does not allow me to select muliple sheets
Ideas? Thanks for the help guys
http://www.excelforum.com/excel-pro...otes-csv-from-specific-sheet.html#post2640656
http://www.ozgrid.com/forum/showthread.php?t=159930&p=584135#post584135
http://www.mrexcel.com/forum/showthread.php?p=2927315#post2927315
Hey Guys,
Struggling here with the double quotes in CSV. All I want to do is:
1. Export double quotes properly in CSV
2. Export specific sheets
I've attached a file from my FTP:
http://www.jyxsaw.com/ZCOU/ACNOVdem.xlsx
I just want to export the double quoted values in Sheets p1 & p2
I've found the following macros on other sites but are to no avail:
1. This one just doesn't seem to work and does not allow me to specify the sheet that I'm trying to dump
Code:
Sub CSVFile()
Dim SrcRg As Range
Dim CurrRow As Range
Dim CurrCell As Range
Dim CurrTextStr As String
Dim ListSep As String
Dim FName As Variant
FName = Application.GetSaveAsFilename("", "CSV File (*.csv), *.csv")
ListSep = Application.International(xlListSeparator)
If Selection.Cells.Count > 1 Then
Set SrcRg = Selection
Else
Set SrcRg = ActiveSheet.UsedRange
End If
Open FName For Output As #1
For Each CurrRow In SrcRg.Rows
CurrTextStr = ìî
For Each CurrCell In CurrRow.Cells
CurrTextStr = CurrTextStr & """" & CurrCell.Value & """" & ListSep
Next
While Right(CurrTextStr, 1) = ListSep
CurrTextStr = Left(CurrTextStr, Len(CurrTextStr) - 1)
Wend
Print #1, CurrTextStr
Next
Close #1
End Sub
This one does work but does not allow me to select muliple sheets
Code:
Sub CSVFile()
Dim SrcRg As Range
Dim CurrRow As Range
Dim CurrCell As Range
Dim CurrTextStr As String
Dim ListSep As String
Dim FName As Variant
FName = Application.GetSaveAsFilename("", "CSV File (*.csv), *.csv")
ListSep = Application.International(xlListSeparator)
If Selection.Cells.Count > 1 Then
Set SrcRg = Selection
Else
Set SrcRg = ActiveSheet.UsedRange
End If
Open FName For Output As #1
For Each CurrRow In SrcRg.Rows
CurrTextStr = ìî
For Each CurrCell In CurrRow.Cells
CurrTextStr = CurrTextStr & """" & CurrCell.Value & """" & ListSep
Next
While Right(CurrTextStr, 1) = ListSep
CurrTextStr = Left(CurrTextStr, Len(CurrTextStr) - 1)
Wend
Print #1, CurrTextStr
Next
Close #1
End Sub
Ideas? Thanks for the help guys