CountIF from activeCell vba

Alroj

Board Regular
Joined
Jan 12, 2016
Messages
50
Office Version
  1. 365
Platform
  1. Windows
Hi Team,

I have this formula in my macro that I was hoping it will work but so far it is giving me an error time 1004.
Would someone be able to assist and let me know if I have missed something please
Much appreciated

VBA Code:
Range("s1").Select
    
ActiveCell.FormulaR1C1 = "=COUNTIF(" & ActiveCell.offset(0,1).Address(RowAbsolute:=False) & ":" & ActiveCell.Offset(2, 10).Address(RowAbsolute:=False) & ",""*Day*"")"
 
..... and with the change you suggested, the formula works! Thank you very much for your valuable insight, Alex Blakenburg!
much appreciated!
 
Upvote 0
You could also have done it with the R1C1 notation like this

VBA Code:
With ActiveCell
  .FormulaR1C1 = "=countif(RC" & .Column + 1 & ":R[2]C" & .Column + 10 & ",""*Day*"")"
End With
 
Upvote 0

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