Message to pop up on another computer

minette

Board Regular
Joined
Jul 8, 2005
Messages
237
Hi all, I couldn't find the exact answer to my question, so I thought I'd post a new thread.

I have a spreadsheet, which needs to send a LAN-type alert to another computer when a value of over 100k is entered in a certain column. The alert/message/pop-up needs to have all the information from the current row in it. E.g. name, surname, company and amount. Also which user has just input the information. So the message to be displayed on the other computer might say something like: "Alice Woods, has just entered the amount of £100,000 for Mr. A Smith, from ABC Inc". It needs to be an immediate message, so cannot go via email, as it sometimes takes up to 5mins or so to be delivered - sometimes even longer.

Obviously needs to be done using VBA, but I don't have any idea where to start.

Any brave souls out there who might be able to help me, please?

Thanks so much for looking....
Minette
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Do your computers have the messenger service running? If so, you can probably use net send as long as you know the name of the target machine or user. Most IT departments I have come across disable that service though.
 
Upvote 0
Hi Rory - trust you to be the one to answer again. I think you're the quickest person on Mr Excel, and always extremely helpful. :)

No, they are not running any messenger services, only Skype, but if I cannot find another solution, I will see if it can be installed....

Minette
 
Upvote 0
The Messenger service is built into Windows - it's not a separate program. It's often disabled as spammers use it to pop up messages on your computer... :)
 
Upvote 0
OK, well, I'll see if I can get the company to enable it....

I take it there's no other way of doing it?
 
Upvote 0
Not that I know of, but I haven't had to do networking stuff for a while!
 
Upvote 0
You'd basically have to shell a command prompt:
Code:
shell "cmd /c ""net send username_here message here""", vbMinimizedNoFocus
 
Upvote 0
was this ever resolved ? can you send popup messages to other users using vba ?
 
Upvote 0

Forum statistics

Threads
1,225,619
Messages
6,186,045
Members
453,335
Latest member
sfd039

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