many thanks for all the replies!
I've actually taken inspiration from each of them, scratched my head a lot, perused the (fairly useless!) help topics, and come up with...
macros copies relevant data into new worksheet
B1 contains the report title = "Report for 2006/10/18"
B3 contains (dynamically) the email address of the recipients
C3 contains (dynamically) the store name
Code:
emailstore = range("b3").value
emailsubj = range("b1").value + " - " + range("c3").value
activeworkbook.sendmail Recipients:=emailstore, subject:=emailsubj
and job is jobbed


MANY thanks again for all the replies - much appreciated!
