Consulting

Results 1 to 2 of 2

Thread: Add sheet after sheets count

  1. #1

    Add sheet after sheets count

    Hello everyone
    I know how to add a sheet after sheets count but as for this line
    With Sheets.Add.Cells(1).Resize(, 8)
    How to add in the same line ... to be after sheets count?

    I tried that line
    With Sheets.Add.Cells(1).Resize(, 8)(After:=Sheets(Sheets.Count))
    But it seems it doesn't work ..
    Thanks advanced for help

  2. #2
    After posting the thread I tried that line
    With Sheets.Add(After:=Sheets(Sheets.Count)).Cells(1).Resize(, 8)
    And it worked well

    Thanks a lot ...

Posting Permissions

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