Automatically updating Master sheet if other sheets are updated?

afc171

Board Regular
Joined
Jan 14, 2017
Messages
143
Office Version
  1. 2013
Platform
  1. Windows
Hi guys,
I have a spreadsheet with a "Master" sheet which has all information listed from all the other sheets. At the moment I have used = to add data from other sheets into the Master one.
Now someone might add or remove a line from any of the sheets which you then have to manually re-do the master sheet.
Is there a different method to update the master file automatically if any data is changed in other sheets? each sheet has the same headers in cells A:I

Thank you
 
Strange it gets a couple of results. What's the result on the below?

='labstock'!B2='Stk-Qty-LC'!A58
A58 shows False

B2 is at line 94 on Stk_Qty_LC

I tried also =labstock!B2='Stk_Qty-LC'!A$2 but no good
 
Upvote 0

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
So they are not equal, therefore no match.

Try =LEN(B2 etc) and see if the numbers are the same. May be a carriage return or something in there maybe
 
Upvote 0
Yeah the numbers seem to be all ok, tried it on the Stk sheet too

I tried these two and both gave me different results :LOL:

VBA Code:
=VLOOKUP([@product],'Stk_Qty-LC'!A:F,5,FALSE)

VBA Code:
=VLOOKUP([@product]&"",'Stk_Qty-LC'!A:F,5,FALSE)
 
Upvote 0

Forum statistics

Threads
1,214,857
Messages
6,121,948
Members
449,056
Latest member
FreeCricketId

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