Write formula to cell using VBA

Beemerang

Board Regular
Joined
Sep 14, 2011
Messages
114
I am trying to write the formula below to a cell using VBA but I am receiving a 1004 error. Strangely, if I write exactly the same string to the cell as text (i.e. without the "=") and then manually insert the "=" it works perfectly!

Code:
Cells(x, 4).Formula = "=COUNTIF(Dic!$B$2:$B$2226;B" & x & ")+COUNTIF(Dic!$F$2:$F$2226;B" & x & ")"

Are there any characters that might need escaping or am I missing something else?

Cheers
Beem
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Try changing your ; to a , and see if that works for you in your locale.

Code:
Cells(x, 4).Formula = "=COUNTIF(Dic!$B$2:$B$2226,B" & x & ")+COUNTIF(Dic!$F$2:$F$2226,B" & x & ")"
 
  • Like
Reactions: ISY
Upvote 0
Mark, thanks a million, that works. Weird though, because if I type a formula I have to use ";".

Thanks again though!
 
Upvote 0
Happy it worked for you. VBA is US based so thought it was worth a try, I just couldn't remember whether the worksheet would handle it which it why I termed it as I did.
 
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,244
Members
452,622
Latest member
Laura_PinksBTHFT

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