Sending a email from inside Excel

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

What I have done is created a time sheet for a month, and it also gives me
the hours that are worked in a week. Do what I would like to do is when the
week goes over 40 hours send a email, a pop-up or some kind of message that
this person went over thier time. Can this be done?

Thank you

Kelly
 
Thank you that is working great, Now how can I make it look at more cells.
Since my timesheets are in months and their are the 4 weeks in each month.

Thank you for all the help
 
hi Kelly

Try this

If Not Intersect(Range("A1"), rng) Is Nothing Then
If Range("A1").Value > 200 Then MsgBox "Hi 1"
End If
If Not Intersect(Range("B1"), rng) Is Nothing Then
If Range("B1").Value > 200 Then MsgBox "Hi 2"
End If
 
Thank you so much for the help I just figured out how to do the other cells
myself.
Thanks Again
Kelly
 

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

Email from inside excel 1
Help me PLEASE 2
Computer Crashing 8
Need formula help 3
Overtime Calculations 4
If Formula 2
payroll calculation 4
Excel Timesheet Error 2

Back
Top