Results 1 to 3 of 3

Retrieve Data Bug

Threaded View

  1. #1
    Registered User
    Join Date
    05-04-2014
    Location
    Hong Kong
    MS-Off Ver
    Excel 2010
    Posts
    2

    Retrieve Data Bug

    Hi, so the guy before me at this firm used to run this VBA to retrieve data from other files. What it does is take a number from a separate file every day and then list it for the month.

    I personally have limited knowledge of VBA. Today when I ran it (making no changes to the code) I got a 1004 error where the path name and date pulled was wrong. In debug, I highlighted the problem code in red. Any help would be much appreciated, thank you!

    Sub GainLoss()
    
    Dim path As String
    Dim GCellx As Integer, GCellY As Integer, r As Double, i As Integer
    
    Dim Year_d1 As Integer, Month_d1 As Variant, Day_d1 As Variant
    
    i = 1
    While Range("Date").Offset(i, 0) <> 0
    
        Year_d1 = Right(Range("Date").Offset(i, 0), 4)
        Month_d1 = Mid(Range("Date").Offset(i, 0), 4, 2)
            If Len(Month_d1) = 1 Then
                Month_d1 = "0" & Month_d1
            End If
        Day_d1 = Left(Range("Date").Offset(i, 0), 2)
            If Len(Day_d1) = 1 Then
                Day_d1 = "0" & Day_d1
            End If
    
    If Range("Fund").Offset(0, 1) = "HTAAA" Then
        Range("Path").Offset(i, 0) = "H:\public\pyeung\Valuation\HTAAA\xxx_" & Year_d1 & Month_d1 & Day_d1 & ".xls"
    ElseIf Range("Fund").Offset(0, 1) = "HTACF" Then
        Range("Path").Offset(i, 0) = "H:\public\pyeung\Valuation\HTACF\xxx_" & Year_d1 & Month_d1 & Day_d1 & ".xls"
    End If
    
    Application.ScreenUpdating = False
    Workbooks.Open filename:=Range("Path").Offset(i, 0)
    
    GCellx = ActiveSheet.Cells.Find("Net Return").Row + 1
    GCellY = ActiveSheet.Cells.Find("Net Return").Column
    r = Cells(GCellx, GCellY)
    
    ActiveWorkbook.Close savechanges:=False
    Application.ScreenUpdating = True
    
    Range("Return").Offset(i, 0) = r
    
    i = i + 1
    Wend
    
    End Sub
    Last edited by FDibbins; 05-05-2014 at 12:31 AM. Reason: code tags added

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Userform: Retrieve data from excel sheet and overwrite with new data in the same rows
    By Pbawal in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-09-2014, 11:49 AM
  2. Compare cell data and Column data and retrieve corresponding data
    By bharath.duraiswamy in forum Excel General
    Replies: 1
    Last Post: 11-06-2013, 05:59 AM
  3. Replies: 6
    Last Post: 01-23-2013, 02:21 PM
  4. Replies: 1
    Last Post: 07-26-2011, 02:58 AM
  5. Retrieve Data
    By abusuffian in forum Excel General
    Replies: 0
    Last Post: 02-16-2011, 09:28 PM

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