trying to add a recipient as a "CC" based on whether or not the referenced cell is not null. for example if cell V2 is notnull, add the cell value as a CC (is always an email address) if it is null, do nothing. here is part of what i have so far, probably wording this incorrectly, the rest of the macro works.
With OutMail
.To = Range("S2")
.CC = "asmith@xxxxxx.com" & ";" & "bsmith@xxxxx.com" & ";" & Range("U2")
If Range("V2").Value >0 Then
Range ("V2")
Else
.BCC = ""
.Subject = Range("C2") & " " & Range("B2")
.HTMLBody = "<p style='font-family:calibri;font-size:14.5'>" & strbody & "<br><br>" & "</P>" & Signature
.display
End With
Bookmarks