Hi,
I'm sure this is a silly one but I can't figure it out. I'm wanting to add the following formula using my macro:
When I convert that into my script it looks like this:
However its giving me an issue around the word strength. I'm sure its associated with the quotation marks but these are required for the formula to work and I can't seem to re-work it generate the formula correctly.
Thanks,
EMcK
I'm sure this is a silly one but I can't figure it out. I'm wanting to add the following formula using my macro:
Code:
=IF(OR(C8>=6,D8>=6),"Strength","")
When I convert that into my script it looks like this:
Code:
Cells(r, 6).Formula = ("=IF(OR(" & Cells(r, 3).Address & ">=6," & Cells(r, 4).Address & ">=6)," & ""Strength"," & """" & ")")
However its giving me an issue around the word strength. I'm sure its associated with the quotation marks but these are required for the formula to work and I can't seem to re-work it generate the formula correctly.
Thanks,
EMcK