Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back from 1 to 10+ pages to re-sync the thread and this will then show the latest posts. Thanks, Mike.
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

VBA question - ranges

  • 19-01-2014 2:28pm
    #1
    Registered Users, Registered Users 2 Posts: 3,608 ✭✭✭


    Can anyone please explain why this works:
    ' copy data from customer to target workbook
    Dim targetSheet As Worksheet
    Set targetSheet = targetWorkbook.Worksheets(1)
    Dim sourceSheet As Worksheet
    Set sourceSheet = customerWorkbook.Worksheets(1)
        
    [I]targetSheet.Range("A1", "C10").Value = sourceSheet.Range("A1", "C10").Value[/I]
    

    but this doesn't:
    ' copy data from customer to target workbook
    Dim targetSheet As Worksheet
    Set targetSheet = targetWorkbook.Worksheets(1)
    Dim sourceSheet As Worksheet
    Set sourceSheet = customerWorkbook.Worksheets(1)
        
    [I]targetSheet.Range(Cells(1, 1), Cells(10, 3)).Value = sourceSheet.Range(Cells(1, 1), Cells(10, 3)).Value[/I]
    

    I've been googling for answers but I think my lack of understanding is so fundamental that I find it difficult to tell whether other similar sounding queries are relevant to my own.

    Thanks


Comments

  • Registered Users, Registered Users 2 Posts: 2,815 ✭✭✭SimonTemplar


    In the code that isn't working, the Cells object isn't prefaced by a worksheet. Therefore, it defaults to the currently active worksheet. Assuming the targetSheet isn't the active sheet, the first part of that line is actually saying:

    "The values of cells A1:C10 of the active sheet in targetSheet"

    This obviously makes no sense because cells can only be part of one sheet, therefore it throws an exception. The reason it works in the first snippet of code is because you are simply passing in a string to the range method of targetSheet (you are explicitly stating that the range belongs to targetSheet). That string will be resolved to a cell address. You are not dealing with a cell object and therefore it doesn't default to the active sheet.

    To illustrate this, if you remove targetSheet and sourceSheet from the last line, everything will default to the active sheet, and therefore there is no conflict so it works.

    To get your code working, you'll need to preface cells with targetSheet and sourceSheet just as you did with the range method.
    targetSheet.Range(targetSheet.Cells(1, 1), targetSheet.Cells(10, 3)).Value = sourceSheet.Range(sourceSheet.Cells(1, 1), sourceSheet.Cells(10, 3)).Value
    
    

    Hopefully I've explained this clearly.


  • Registered Users, Registered Users 2 Posts: 3,608 ✭✭✭breadmonkey


    Thanks!


Advertisement