ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   CC Field Q (https://www.excelbanter.com/excel-programming/405860-re-cc-field-q.html)

Sean

CC Field Q
 
The situation I had in mind Ron, is where my TO; CC and BCC addresses
are all in the same column


Ron de Bruin

CC Field Q
 
..Range("A3:AI5").Cells.SpecialCells(xlCellTypeCon stants)


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Sean" wrote in message ...
The situation I had in mind Ron, is where my TO; CC and BCC addresses
are all in the same column


Sean

CC Field Q
 
Wow Thanks Ron, its a simple as that


Sean

CC Field Q
 
Ron I tried If Len(strcc) 0 Then strcc = Left(strcc, Len(strcc) -
1)

but getting a message 'no cells found' on line

For Each cell In ThisWorkbook.Sheets("Area 1") _
.Range("AI2:AI3").Cells.SpecialCells(xlCellTypeCon stants)

Which is correct in that there is no address, but thats were I wish to
have no e-mail address added to my mail (my TO field will always have
an address, so it will be a vaild e-mail, just my CC and BCC feilds
may not always have an address)



Sean

CC Field Q
 
Ron, it maybe relevant but the e-mail addresses in the CC and BCC
feild are formula derived, as like

","")


Ron de Bruin

CC Field Q
 
Hi Sean

Use this then

On Error Resume Next
For Each cell In ThisWorkbook.Sheets("Mail") _
.Range("A3:AI5").Cells.SpecialCells(xlCellTypeForm ulas)

If cell.Value Like "?*@?*.?*" Then
strcc = strcc & cell.Value & ";"
End If
Next
If Len(strcc) 0 Then strcc = Left(strcc, Len(strcc) - 1)
On Error GoTo 0


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Sean" wrote in message ...
Ron, it maybe relevant but the e-mail addresses in the CC and BCC
feild are formula derived, as like

","")


Sean

CC Field Q
 
Thanks Ron, seems to work great



All times are GMT +1. The time now is 12:32 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com