You are here:

Excel/Macro to convert text to columns

Advertisement


Question
Hi, Iam trying to create a macro to convert text to values.
I have a workbook containing five sheets. In every sheet i have different no. of columns(ex: sheet1-20 columns, sheet2- 15columns etc) of data. i want to convert text(that was imported from Access) to values in columns. I just tried the below code. this is working for only one sheet. How would i apply this to multiple sheets.
Sub text2columns()
Dim src As Workbook
Dim i As Integer

Set src = Workbooks.Open("E:   emp.xls")
src.Sheets("Sheet1").Cells(1, 1).Select

For i = 1 To 20
ActiveCell.EntireColumn.Select
Selection.TextToColumns
ActiveCell.Offset(0, 1).Select
On Error Resume Next
Next i
End Sub

Is it correct or is there a easy way instead of above. Please help me..
Thanks in advance....

Answer
Use a structure like this:

Sub sample()
   Dim src As Worksheet
   Dim rng As Range
   For Each src In ThisWorkbook.Worksheets
       Set rng = src.Range("a1")
       Do Until rng.Formula = ""
'yada yada...
           Set rng = rng.Offset(0, 1)
       Loop
   Next src
End Sub
About Excel
This topic answers questions related to Microsoft Excel spreadsheet (or workbook) stand-alone or Mircrosoft Office Excel including Excel 2003, Excel 2007, Office 2000, and Office XP. You can get Excel help on Excel formulas(or functions), Excell macros, charting in Excel, advanced features, and the general use of Excel. This does not provide a general Excel tutorial nor the basics of using a spreadsheet. It provides specific answers to using Microsoft Excel only. If you do not see your Excel question answered in this area then please ask an Excel question here

Excel

All Answers


Answers by Expert:


Ask Experts

Volunteer


Stuart Resnick

Expertise

I can answer questions relating to MS Excel formulas, or to programming with vba (Visual Basic for Applications) in the Excel environment. Please follow the following guidelines: your question should focus on one specific issue you want to learn. It's beyond the scope of this free service for me to create entire projects or complex vba solutions for you from scratch. You should be able to do most of the work yourself, and come here when you need help with a specific point you're stuck on. ALWAYS include a simple, concrete example illustrating what you want to learn. Explain this example in detail in the text of your question (what data is in which cells of which sheets, etc). Be very precise about the results you want, using this sample to make the logic clear. Always keep these examples SIMPLE. Never e.g. use 18 worksheets in your example if using 2 or 3 will do. Never use ranges like AI567:BB865 if using a range like A1:B3 will do. Thanks.

Experience

As a consultant, I've designed Excel tools since the 90s, working for the Federal Reserve Bank, AT&T, and (currently) Gap Inc.

Education/Credentials
My only "education" comes from 2 decades of doing spreadsheet/programming work, with major SF Bay Area corporations such as AT&T, Federal Reserve Bank, and Gap Inc.

©2013 About.com. All rights reserved.