Consulting

Results 1 to 3 of 3

Thread: VBA Set cell value under last row

  1. #1

    VBA Set cell value under last row

    Hello, I need to set a cell value in column A, under last row with data. Could you help please? Thanks

  2. #2
    VBAX Mentor
    Joined
    Jul 2012
    Posts
    398
    Location
    LR = Cells(Rows.Count, "A").End(xlUp).Row+1
    range("A" & LR).value = yourvalue

  3. #3
    Perfect. Thanks

Posting Permissions

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