Extra E-Mail in a Column Q

S

Seanie

I have the code below (ex Ron de Bruin) which attempts to extract all
e-mail addresses in column BJ, my problem is that the values in BJ are
formula based and thus it debugs, if I manually type an address in BJ
it works fine, how could I tweak below?

Thanks


For Each cell In ThisWorkbook.Sheets("XYZ") _
.Columns("BJ").Cells.SpecialCells(xlCellTypeConstants)
If cell.Value Like "?*@?*.?*" Then
strto = strto & cell.Value & ";"
End If
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top