bleh...can't figure out what's wrong. I changed a numerical value in a formula to be inserted into a cell (0.5) into a variable (TaskLim). i had problems figuring out the ampersand & quote placements. i finally got it to stop giving me errors, but it now just gives me a "TRUE" in the cell, when I want the actual formula. Any ideas?
Originally:
Selection.Offset(3, 0).FormulaR1C1 = "=COUNTIF(R[-2]C, "">=0.5"")"
Now:
Selection.Offset(3, 0).FormulaR1C1 = "=COUNTIF(R[-2]C, " & "" >= " & TaskLim & "")"