Skip to main content

How to import csv file into worksheet?

Author: Xiaoyang Last Modified: 2024-09-11

It may be easy for us to import or save worksheet as CSV file, but, have you ever tried import CSV file into worksheet? This article, I will talk about some interesting methods for you to deal with this task.

Import CSV file to worksheet with Text Import Wizard

Import CSV file to worksheet with Kutools for Excel

Import CSV file to worksheet with VBA code


Import CSV file to worksheet with Text Import Wizard

Normally, in Excel, you can apply the Text Import Wizard function to import the CSV file to a worksheet, please do as follows:

1. Activate the worksheet that you want to import the CSV file, then click Data > From Text, see screenshot:

screenshot of clicking Data > From Text

2. In the Import Text File window, please specify the CSV file that you want to import, see screenshot:

specify the CSV file to import

3. Then click Import button, in the Step 1 of the Text Import Wizard, select Delimited option, see screenshot:

select Delimited option in the dialog box

4. Then click Next > button, in the Step 2 of the wizard, check Comma under the Delimiters option, see screenshot:

check Comma under the Delimiters option

5. Then go on clicking Next > button, in Step 3 of the wizard, select Text option under Column data format section, and you can see the first column will be highlighted. Then hold the Shift key to highlight all columns. See screenshot:

select Text option under Column data format section

6. Then click Finish button, in the popped out Import Data dialog box, choose the location where you want to put the data, see screenshot:

choose the location to put the data

7. Click OK button, the CSV file has been imported to the worksheet at once.

the CSV file has been imported to the worksheet


Import CSV file to worksheet with Kutools for Excel

If you have Kutools for Excel, with its Insert File at Cursor utility, you can quickly import the CSV file, Text file, Excel file or PRN file to current worksheet.

Kutools for Excel offers over 300 advanced features to streamline complex tasks, boosting creativity and efficiency. Itegarate with AI capabilities, Kutools automates tasks with precision, making data management effortless. Detailed information of Kutools for Excel...         Free trial...

After installing Kutools for Excel, please do as follows:

1. Activate a worksheet where you want to import the CSV file data.

2. Then click Kutools Plus > Import & Export > Insert File at Cursor, see screenshot:

click Insert File at Cursor feature of kutools

3. In the Insert File at Cursor dialog box, please do the following options:

(1.) Click select button button to select a cell where you want to output the data;

(2.) Then click Browse button to open the Select a file to be inserted at the cell cursor position window;

(3.) In the popped out window, choose CSV Files from the right bottom drop down list, and then select the CSV file you want to import.

set options in the dialog box
arrow down
choose CSV Files from the window

4. After specifying the CSV file, click Open button to return the former dialog box, and then click OK to import the CSV file. And the CSV file will be inserted into the specific location you need.

Download and free trial Kutools for Excel Now !


Import CSV file to worksheet with VBA code

If you are tired of the above method step by step, the following VBA code also can solve this problem.

1. Hold down the ALT + F11 keys, and it opens the Microsoft Visual Basic for Applications window.

2. Click Insert > Module, and paste the following code in the Module Window.

VBA code:Import CSV file to worksheet:

Sub ImportCSVFile()
'Updateby Extendoffice
    Dim xFileName As Variant
    Dim Rg As Range
    Dim xAddress As String
    xFileName = Application.GetOpenFilename("CSV File (*.csv), *.csv", , "Kutools for Excel", , False)
    If xFileName = False Then Exit Sub
    On Error Resume Next
    Set Rg = Application.InputBox("please select a cell to output the data", "Kutools for Excel", Application.ActiveCell.Address, , , , , 8)
    On Error GoTo 0
    If Rg Is Nothing Then Exit Sub
    xAddress = Rg.Address
    With ActiveSheet.QueryTables.Add("TEXT;" & xFileName, Range(xAddress))
        .FieldNames = True
        .RowNumbers = False
        .FillAdjacentFormulas = False
        .PreserveFormatting = True
        .RefreshOnFileOpen = False
        .RefreshStyle = xlInsertDeleteCells
        .SavePassword = False
        .SaveData = True
        .RefreshPeriod = 0
        .TextFilePromptOnRefresh = False
        .TextFilePlatform = 936
        .TextFileStartRow = 1
        .TextFileParseType = xlDelimited
        .TextFileTextQualifier = xlTextQualifierDoubleQuote
        .TextFileConsecutiveDelimiter = False
        .TextFileTabDelimiter = True
        .TextFileSemicolonDelimiter = False
        .TextFileCommaDelimiter = True
        .TextFileSpaceDelimiter = False
        .TextFileTrailingMinusNumbers = True
        .Refresh BackgroundQuery:=False
    End With
    End Sub

3. Then press F5 key to run this code, and choose the CSV file that you want to import in the popped out Kutools for Excel dialog, see screenshot:

vba code to choose the CSV file

4. Then click Open button, and click a cell where you want to put the imported data, see screenshot:

vba code to click a cell to out the imported data

5. And then click OK, the specific CSV file has been imported into the worksheet.

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more
Use Kutools in your preferred language – supports English, Spanish, German, French, Chinese, and 40+ others!

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!