Opening Excel in 3 instances

ephillips

New Member
Joined
Jul 18, 2010
Messages
4
I view 1000's of numbers each day on 3 monitors each of which is a custom database tied into a custom database. The key field for each is a product # like '12094'.

It would save so much time daily if I entered '12094' in one cell of the 1st instance of the database and it appeared in the other two updating that screen accorded to that database.

Is something like that even possible? .... Thanks, Edward
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Can one be the master? And are you only adding new unique entries or are you going to be updating existing entries?
Either way, you should probably use -- on the master -- something like:

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
on error resume next 'will not update if entry not found on 2nd or 3rd sheet
row2nd = application.match(target,sheet2.range("E:E"),0) 'change E to the actual range where  the product number appears on the 2nd sheet
row3rd = application.match(target,sheet3.range("E:E"),0) 'change E to the actual range where  the product number appears on the 2nd sheet
resume next
End Sub
 
Upvote 0
Thank You .... I'm ok with Excel but become lost with VBA code. But what I take from this is that it is possible. With that knowledge and the directions you provided above I will dig in and see if I can master this.

.... Thank You Very Much
 
Upvote 0

Forum statistics

Threads
1,215,391
Messages
6,124,679
Members
449,179
Latest member
jacobsscoots

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