Send automatic emails based on cell text within a column

Pedroc12

New Member
Joined
Jul 29, 2022
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hi i hope you can help me since i have been trying this for weeks.

I need to find a way for excel to send an automatic email to a specific adress IF any value from a column changes its value to a specific text. The value in question is text, so for example:
- If C5 changes to "Done" then an email is sent to a specified adress.

Thank you and have a nice day!
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
You can do that with HYPERLINK Formula
For what you want to achieve, you have to create a column that changes message body as per your requirement - IF or IFS Formula can help you with that.
Similarly you can create "Customised" Subject Column too, if needed.
The generic formula is underneath. You can customize it as per your needs.

Excel Formula:
=HYPERLINK("mailto:" & C3 & "?subject="&IF(D3=1,$I$3,IF(D3=2,$I$4,$I$5)) &"&cc=abclimited@abc.com"&"&body="&IF(D3=1,$J$3,IF(D3=2,$J$4,$J$5&E3)) & " " &$J$7, "Send email")
 
Upvote 0

Forum statistics

Threads
1,216,144
Messages
6,129,120
Members
449,488
Latest member
qh017

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top