I'm trying to use 'Cell.Value' in a formula but it isn't working - it's putting the phrase itself in rather than the cell reference, this is what I have;
For Each Cell In Range("U2:U20")
If Cell <> "" Then
Cell.Offset(0, 1).Formula = "=COUNTIF(Deployments!$S$2:$S5000,Cell)"
End If
Next
Can...