Error trying to add formula using VBA

sharky12345

Well-known Member
Joined
Aug 5, 2010
Messages
3,404
Office Version
  1. 2016
Platform
  1. Windows
I'm trying to add this formula to a cell using VBA but I'm getting an error, 1004 Application-defined or object-defined - I have no idea why if someone can explain please?

VBA Code:
Cell.Offset(0, 2).Formula = "=" & Cell.Offset(0, -1).Address & "/" & Cell.Offset(0, -2).Address & ""
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Where is cell located?
 
Upvote 0
Sorry, should have explained - this is the full code:

VBA Code:
Application.ScreenUpdating = False

LastRow = Sheet10.Range("A65536").End(xlUp).Row
For Each Cell In Sheet10.Range("B2:B" & LastRow)

Cell.Offset(0, 2).Formula = "=" & Cell.Offset(0, -1).Address & " / " & Cell.Offset(0, -2).Address & ""

Next

Application.ScreenUpdating = True
 
Upvote 0
Solved it:

VBA Code:
Cell.Offset(0, 2).Formula = "=" & Cell.Offset(0, 1).Address & "/" & Cell.Address & ""
 
Upvote 0
That's what I suspected - can't really go two columns left from column B. :)
 
Upvote 0

Forum statistics

Threads
1,214,935
Messages
6,122,337
Members
449,078
Latest member
skydd

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