ReventonKing
New Member
- Joined
- Oct 26, 2015
- Messages
- 7
Hello Guys!
I have a code that creates an email. I need to address all the people by name, so I wrote this code:
The result is this:
"Hi" & Sheets(29).Range(Cells(inter,22).Value"
Then I modified the code to this:
The result of this is:
"Hi
Gréta"
So the added cell is not be in the same setup format, nor it is in the same row as "Hi"
Please help, thank you.
I have a code that creates an email. I need to address all the people by name, so I wrote this code:
Code:
strbodyhi = "< BODY style=font-size:11pt;font-family:Calibri >Hi & Sheets(29).Range(Cells(inter,22).Value" < /BODY >"
The result is this:
"Hi" & Sheets(29).Range(Cells(inter,22).Value"
Then I modified the code to this:
Code:
strbodyhi = "< BODY style=font-size:11pt;font-family:Calibri >Hi < /BODY >" & Sheets(29).Range("V" & inter).Value
"Hi
Gréta"
So the added cell is not be in the same setup format, nor it is in the same row as "Hi"
Please help, thank you.