I have a spreadsheet with Project IDs in Column A. Im looking to send individual emails once a value has been added to the corresponding cell in Column C. I want the cell specific information from Column A to be in the Subject line. I can do everything but change the Subject Line value to include the Corresponding Cell information. I always get the cell information from cell A2 in the Subject line - not the cell information from the corresponding cell in that column.
.Subject = "GHG " & Range("A2").Value
So my subject line is always - GHG 0102
And I want it to be whatever the relevent project ID is. i.e. GHG 0103, GHG 0105, etc.
.Subject = "GHG " & Range("A2").Value
So my subject line is always - GHG 0102
And I want it to be whatever the relevent project ID is. i.e. GHG 0103, GHG 0105, etc.