pfmurray
asked on
Creating a range reference in Excvel VBA from text in a spreadsheet cell.
I wish to convert the following spreadsheet formula to one calculated in VBA.
=ROUND(SUMIFS(INDIRECT(B2) ,TM1_cats, A2,TM1_mon th,G2)*100 0,0)
The problem I'm having is replicating the "Indirect(b2)" piece of the formula in VBA. I keep getting Error 1004. Does anyone have the right syntax for this? I've been searching a while but can't find anything that works.
Thanks
=ROUND(SUMIFS(INDIRECT(B2)
The problem I'm having is replicating the "Indirect(b2)" piece of the formula in VBA. I keep getting Error 1004. Does anyone have the right syntax for this? I've been searching a while but can't find anything that works.
Thanks
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER