I want to prompt the message box after the changing value of specific cell value.
I am using sheet change event but i want to do it manually using macro or instead of sheet change event is there any event like cell change event only for specific rangename.
i am already using worksheet_change i need event for a specific cell or specific range name.
can anyone suggest me macro or event for cell change?
Thanks in advance
Worksheet_Changeevent and just display the message box ifTargetis the cell (or part of the range) that you are interested in. There are many, many, many examples available, both here on Stack Overflow and elsewhere, to show you how to do this.Worksheet_Changewill only work if you physically change the contents of the target cell(s), otherwise if your cell's value changes based on a formula, you might need to look at theWorksheet_Calculateevent.