Results 1 to 4 of 4

Read data from excel to userform

Threaded View

  1. #1
    Forum Contributor
    Join Date
    03-06-2014
    Location
    malaysia
    MS-Off Ver
    Excel 2003/2010/2013
    Posts
    107

    Read data from excel to userform

    Hey guys,

    Tried code below to read my data from excel to userform . Found this code from youtube and try do modification but not working.

    Any one can help?

    Private Sub CommandButton1_Click()
    Dim ISBNColumn As Integer
    Dim TitleColumn As Long
    
    ISBNColumn = 2
    TitleColumn = 1
    
    Dim ISBNno As String
    Dim Titleno As String
    
    Dim readdata As Range
    Set readdata = ThisWorkbook.Sheets("Sheet1")
    
    rowCounter = 0
    
    Do
    DoEvents
    rowCounter = rowCounter + 1
    'readdata = Sheets("Sheet1").Cells(rowCounter, ISBNColumn).Value
    readdata.Range (ISBNColumn & rowCounter)
        
        If readdata = ISBNTextBox.Text Then
        EPRNTextBox.Text = Sheets("Sheet1").Range(TitleColumn & rowCounter)
        End If
        
    Loop Until readdata = ""
    
    End Sub
    http://www.excelforum.com/attachment...1&d=1468923106
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] How to read text data from .dat files and fetch the data in to excel based on input..
    By mahendra.asapu in forum Excel Programming / VBA / Macros
    Replies: 62
    Last Post: 07-19-2015, 04:36 AM
  2. Open workbook in read only or read write for excel 2010 version
    By Agent1 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 12-20-2014, 07:19 PM
  3. More users in 1 Excel file , VBA userform. read only solution?
    By stevnb in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 11-27-2012, 10:11 AM
  4. Read Data into an Array, Write Data into Another Sheet (Excel VBA Only) [v14/2010]
    By lloydgodin in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 06-15-2012, 07:22 PM
  5. Help with userform (trying to read data from table into combo list)
    By EK1 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 03-05-2010, 10:18 AM
  6. Read Worksheet Data into Userform
    By msommerf in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-10-2009, 10:12 AM
  7. Excel Macro - Read excel & read excel range - save as text
    By se.sathish in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 01-21-2008, 09:00 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1