Worksheets("05data").Activate
totalrows = ActiveSheet.UsedRange.Rows.Count
totalcolumns = ActiveSheet.UsedRange.Columns.Count
ActiveCell.Select
ActiveCell.Offset(totalrows, totalcolumns).Range("a1").Select
Can anyone tell me why the 5th line gives me an error. I realize that
I must be using the wrong sort of function but I can't figure out why
or how to fix it.