I have a workbook with 100 sheets each contians the same form When a sheet contians AB or NB in cell J20 I want to email the active sheet to a receipiant when saved
check out this link to a previous thread that should help you with the emailing part...as for the code to loop through all the worksheets it would be along the lines of...
Code
For Each sht In ActiveWorkbook.Sheets
If sht.Cells(10, 20) = "AB" Or sht.Cells(10, 20) = "NB" Then
'you email code here
End If
Next