Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am exporting a worksheet into CSV and need some help formatting the
results. Here is an example of what my CSV looks like in text format. The second record needs 39 "empty" comma separated placeholders and the first and third "do not" need the extra placeholders. This is what I get when I run my macro. CI,20060320203300,testuser,001,,,, 3,testbankcode,,nyc,testbankaccount,usd,50000.00,2 0060317 99,1,50000.00,,,,, This is what I need the file to look like. CI,20060316140834,testuser,001 3,testbankcode,,nyc,testbankaccount,usd,50000.00,2 0060317,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,, 99,1,50000.00 Code I am using. Set rngSave = Selection Set wkbNew = Workbooks.Add Set wkSheet = wkbNew.ActiveSheet wkSheet.Cells(1, 1).Value = "CI" wkSheet.Cells(1, 2).NumberFormat = "@" wkSheet.Cells(1, 2).Value = Format(Now, "yyyymmddhhmmss") wkSheet.Cells(1, 3).Value = "testuser" wkSheet.Cells(1, 4).Value = "00000001" i = 1 rngSave.Copy wkSheet.Range("A2") For i = i + 1 To rwCount + 1 wkSheet.Cells(i, 9).Value = "" wkSheet.Cells(i, 10).Value = "" wkSheet.Cells(i, 11).Value = "" wkSheet.Cells(i, 12).Value = "" wkSheet.Cells(i, 13).Value = "" wkSheet.Cells(i, 14).Value = "" wkSheet.Cells(i, 15).Value = "" wkSheet.Cells(i, 16).Value = "" wkSheet.Cells(i, 17).Value = "" wkSheet.Cells(i, 18).Value = "" wkSheet.Cells(i, 19).Value = "" wkSheet.Cells(i, 20).Value = "" wkSheet.Cells(i, 21).Value = "" wkSheet.Cells(i, 22).Value = "" wkSheet.Cells(i, 23).Value = "" wkSheet.Cells(i, 24).Value = "" wkSheet.Cells(i, 25).Value = "" wkSheet.Cells(i, 26).Value = "" wkSheet.Cells(i, 27).Value = "" wkSheet.Cells(i, 28).Value = "" wkSheet.Cells(i, 29).Value = "" wkSheet.Cells(i, 30).Value = "" wkSheet.Cells(i, 31).Value = "" wkSheet.Cells(i, 32).Value = "" wkSheet.Cells(i, 33).Value = "" wkSheet.Cells(i, 34).Value = "" wkSheet.Cells(i, 35).Value = "" wkSheet.Cells(i, 36).Value = "" wkSheet.Cells(i, 37).Value = "" wkSheet.Cells(i, 38).Value = "" wkSheet.Cells(i, 39).Value = "" wkSheet.Cells(i, 40).Value = "" wkSheet.Cells(i, 41).Value = "" wkSheet.Cells(i, 42).Value = "" wkSheet.Cells(i, 43).Value = "" wkSheet.Cells(i, 44).Value = "" wkSheet.Cells(i, 45).Value = "" wkSheet.Cells(i, 46).Value = "" wkSheet.Cells(i, 47).Value = "" Next i wkSheet.Cells(r, 1).Value = "99" wkSheet.Cells(r, 2).Value = rwCount wkSheet.Cells(r, 3).Formula = "=sum(" & rng.Address(1, 1, xlA1, True) & ")" Application.DisplayAlerts = False wkbNew.SaveAs Filename:="c:\" & wkbName & ".csv", FileFormat:=xlCSV wkbNew.Close Any help would be greatly appreciated. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Lock Cell Format - Allow copy and paste of data without format change | Excel Worksheet Functions | |||
Need help with converting CUSTOM format/TEXT format to DATE format | Excel Worksheet Functions | |||
Replace million-billion number format to lakhs-crores format | Excel Discussion (Misc queries) | |||
how to format excel format to text format with separator "|" in s. | New Users to Excel | |||
Keep format after paste from other worksheets - conditional format or EnableControl solution doesn't work | Excel Programming |