Formula works in sheet but syntax error pops in VBA

kermja13

New Member
Joined
Jun 23, 2020
Messages
2
Hi there,

This formula works in the sheet but it won't compile in VBA due to a syntax error. Any tips? Thank you!

As it appears in the sheet: =INDIRECT(SUBSTITUTE(ADDRESS(1, COLUMN(), 4),1,"")&"$"&$A8)*(Y8/100)

As it appears in VBA: Sheets(shName).Range("C" & b + 1).Formula = "=INDIRECT(SUBSTITUTE(ADDRESS(1, COLUMN(), 4),1,"")&"$"&$A8)*(Y8/100)"
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
I think it has something to do with one of the $ signs but if I double quote the $ (""$"") a 1004 error pops when I run it
 
Upvote 0
Hi & welcome to MrExcel.
You need to double-up on the quotes inside the formula like
VBA Code:
 Sheets(shName).Range("C" & b + 1).Formula = "=INDIRECT(SUBSTITUTE(ADDRESS(1, COLUMN(), 4),1,"""")&""$""&$A8)*(Y8/100)"
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,378
Members
448,955
Latest member
BatCoder

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