Not working with offset().value but works with offset.select and then Activecell.value

mayankgo

New Member
Joined
Oct 11, 2017
Messages
10
Code isn't working if I use. Why so?

Code:
Option Explicit
Sub AddNewFilm() 

Dim NewFilmName As String, NewFilmDate As Date, NewFilmLength As Integer 

NewFilmName = InputBox("Type a new film name") 

NewFilmDate = InputBox("Type the date") 

NewFilmLength = InputBox("Type length in numbers") 

Sheet1.Activate Range("A2").End(xlDown).Offset(1, 0).Select 

ActiveCell.Value = ActiveCell.Offset(-1, 0).Value + 1 

ActiveCell.Offset(0, 1).Select 

ActiveCell.Value = NewFilmName 

ActiveCell.Offset(0, 1).Value = NewFilmDate

ActiveCell.Offset(0, 2).Value = NewFilmLength 

ActiveCell.End(xlToLeft).Offset(1, 0).Select 

MsgBox NewFilmName & " was added to the list"
End Sub

Works if I use

Code:
Option Explicit

Sub AddNewFilm()


    Dim NewFilmName As String, NewFilmDate As Date, NewFilmLength As Integer
    
    NewFilmName = InputBox("Type a new film name")
    NewFilmDate = InputBox("Type the date")
    NewFilmLength = InputBox("Type length in numbers")
    
    Sheet1.Activate
    
    Range("A2").End(xlDown).Offset(1, 0).Select
    
    ActiveCell.Value = ActiveCell.Offset(-1, 0).Value + 1
    ActiveCell.Offset(0, 1).Select
    
    ActiveCell.Value = NewFilmName
    
    MsgBox NewFilmName & " was added to the list"
    
    ActiveCell.Offset(0, 1).Select
    
    ActiveCell.Value = NewFilmDate
    
    ActiveCell.Offset(0, 1).Select
     
    ActiveCell.Value = NewFilmLength
    
    ActiveCell.End(xlToLeft).Offset(1, 0).Select
    


End Sub
 
Last edited by a moderator:

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Both codes work fine for me.
Can you define "isn't working" ?
In what way does it not work?
Do you get an error? What error? On Which line ?
Does it not do what you're expecting it to do? What DOES it do? How is that different from what you expected?

All that said, You're probably better off without all the selecting, it's not necessary to Select or Activate Sheets/Ranges to manipulate them.

Try this
Code:
Option Explicit
Sub AddNewFilm()
Dim NewFilmName As String, NewFilmDate As Date, NewFilmLength As Integer
Dim NewCell As Range
NewFilmName = InputBox("Type a new film name")
NewFilmDate = InputBox("Type the date")
NewFilmLength = InputBox("Type length in numbers")
Set NewCell = Sheet1.Range("A2").End(xlDown).Offset(1, 0)
With NewCell
    .Value = .Offset(-1, 0).Value + 1
    .Offset(0, 1).Value = NewFilmName
    .Offset(0, 2).Value = NewFilmDate
    .Offset(0, 3).Value = NewFilmLength
End With
MsgBox NewFilmName & " was added to the list"
End Sub
 
Upvote 0
The only thing that is wrong with your 1st code is this line
Code:
Sheet1.Activate Range("A2").End(xlDown).Offset(1, 0).Select
which should be
Code:
Sheet1.Activate 
Range("A2").End(xlDown).Offset(1, 0).Select
Not sure if that's in your original code, or just something went wrong when you copied it to the board.
 
Upvote 0

Forum statistics

Threads
1,222,830
Messages
6,168,509
Members
452,194
Latest member
Lowie27

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top