Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 08-17-2017, 02:30 AM
vicmar vicmar is offline update master list automatically from other worksheet Windows 7 64bit update master list automatically from other worksheet Office 2010 64bit
Novice
update master list automatically from other worksheet
 
Join Date: Aug 2017
Posts: 24
vicmar is on a distinguished road
Default update master list automatically from other worksheet

hi,

I have three worksheet(CV, AR and Master List) one is master list what Im trying to do is when i update the CV or AR sheet it should be reflect in the master list automatically.

This is based on reference and revision. I try using vlookup, index and match but the problem is when the second submission. I attached the sample of my excel and enter manually the data that will appear in master list.

Thank you
Attached Files
File Type: xlsx sample.xlsx (22.0 KB, 16 views)
Reply With Quote
  #2  
Old 08-17-2017, 05:17 AM
NBVC's Avatar
NBVC NBVC is offline update master list automatically from other worksheet Windows 10 update master list automatically from other worksheet Office 2013
The Formula Guy
 
Join Date: Mar 2012
Location: Mississauga, CANADA
Posts: 215
NBVC will become famous soon enoughNBVC will become famous soon enough
Default

Can/will you prefill the Reference column (A) in the Master list, so that formulas can match that field in the other sheets?
Reply With Quote
  #3  
Old 08-17-2017, 06:50 AM
vicmar vicmar is offline update master list automatically from other worksheet Windows 7 64bit update master list automatically from other worksheet Office 2010 64bit
Novice
update master list automatically from other worksheet
 
Join Date: Aug 2017
Posts: 24
vicmar is on a distinguished road
Default

yes it will fill the same reference
Reply With Quote
  #4  
Old 08-17-2017, 07:08 AM
NoSparks NoSparks is offline update master list automatically from other worksheet Windows 7 64bit update master list automatically from other worksheet Office 2010 64bit
Excel Hobbyist
 
Join Date: Nov 2013
Location: British Columbia, Canada
Posts: 842
NoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of light
Default

Do you have any interest in a VBA macro solution ?
Reply With Quote
  #5  
Old 08-17-2017, 07:15 AM
vicmar vicmar is offline update master list automatically from other worksheet Windows 7 64bit update master list automatically from other worksheet Office 2010 64bit
Novice
update master list automatically from other worksheet
 
Join Date: Aug 2017
Posts: 24
vicmar is on a distinguished road
Default

i prefer formula because this file will be shared in the network but if that's the better solution its ok for me.
Reply With Quote
  #6  
Old 08-17-2017, 07:21 AM
NBVC's Avatar
NBVC NBVC is offline update master list automatically from other worksheet Windows 10 update master list automatically from other worksheet Office 2013
The Formula Guy
 
Join Date: Mar 2012
Location: Mississauga, CANADA
Posts: 215
NBVC will become famous soon enoughNBVC will become famous soon enough
Default

Add a helper column in the AV and CV sheets.. (you can hide these columns afterwards)

in F3 of each sheet enter formula:

=IF(A3="","",A3&"_"&B3)


copied down. You can go as far as you want so that future entries will be covered... or you can turn your data into tables so that the formula will copy down automatically as you enter new data.

In the Master sheet in B5 enter formula:

=IF($A5="","",IFERROR(IF(COUNTIF(CV!$F:$F,$A5&"_"& 0),INDEX(CV!C:C,MATCH($A5&"_"&0,CV!$F:$F,0)),INDEX (AR!C:C,MATCH($A5&"_"&0,AR!$F:$F,0))),0))

copied across to column D and down as far as you want to capture future data.


The enter same formula in E5 and change all the &0 in the formula to &1 to correspond to Rev number

e.g.

=IF($A5="","",IFERROR(IF(COUNTIF(CV!$F:$F,$A5&"_"& 1),INDEX(CV!C:C,MATCH($A5&"_"&1,CV!$F:$F,0)),INDEX (AR!C:C,MATCH($A5&"_"&1,AR!$F:$F,0))),0))

.... then copy to column G and down.

Repeat for each revision.
Reply With Quote
  #7  
Old 08-17-2017, 07:47 AM
vicmar vicmar is offline update master list automatically from other worksheet Windows 7 64bit update master list automatically from other worksheet Office 2010 64bit
Novice
update master list automatically from other worksheet
 
Join Date: Aug 2017
Posts: 24
vicmar is on a distinguished road
Default

nice job @NBVC

thank you very much..

the last 0 I change it to "" so that if empty it will be blank.
Reply With Quote
  #8  
Old 08-17-2017, 08:00 AM
NBVC's Avatar
NBVC NBVC is offline update master list automatically from other worksheet Windows 10 update master list automatically from other worksheet Office 2013
The Formula Guy
 
Join Date: Mar 2012
Location: Mississauga, CANADA
Posts: 215
NBVC will become famous soon enoughNBVC will become famous soon enough
Default

Ok.

You're welcome.
Reply With Quote
  #9  
Old 08-19-2017, 03:42 AM
vicmar vicmar is offline update master list automatically from other worksheet Windows 7 64bit update master list automatically from other worksheet Office 2010 64bit
Novice
update master list automatically from other worksheet
 
Join Date: Aug 2017
Posts: 24
vicmar is on a distinguished road
Default

hi @NBVC

I add more sheets and I adjust the formula as per below:

=IF($A5="","",IFERROR(IF(COUNTIF(CV!$F:$F,$A5&"_"& 0),INDEX(CV!C:C,MATCH($A5&"_"&0,CV!$F:$F,0)),INDEX (CV-SKT!C:C,MATCH($A5&"_"&0,CV-SKT!$F:$F,0)),INDEX(AR!C:C,MATCH($A5&"_"&0,AR!$F:$ F,0)),INDEX(LS!C:C,MATCH($A5&"_"&0,LS!$F:$F,0)),IN DEX(EL!C:C,MATCH($A5&"_"&0,EL!$F:$F,0)),INDEX(ME!C :C,MATCH($A5&"_"&0,ME!$F:$F,0)),INDEX(GE!C:C,MATCH ($A5&"_"&0,GE!$F:$F,0))),""))

But I encounter an error saying "You've entered too many arguments for this function"
Reply With Quote
  #10  
Old 08-21-2017, 01:09 PM
NBVC's Avatar
NBVC NBVC is offline update master list automatically from other worksheet Windows 10 update master list automatically from other worksheet Office 2013
The Formula Guy
 
Join Date: Mar 2012
Location: Mississauga, CANADA
Posts: 215
NBVC will become famous soon enoughNBVC will become famous soon enough
Default

I apologize for the late response...been very busy at work....

Try:

Code:
=IF($A5="","",IFERROR(IF(COUNTIF(CV!$F:$F,$A5&"_"&0),INDEX(CV!C:C,MATCH($A5&"_"&0,CV!$F:$F,0)),IF(COUNTIF('CV-SKT'!$F:$F,$A5&"_"&0),INDEX('CV-SKT'!C:C,MATCH($A5&"_"&0,'CV-SKT'!$F:$F,0)),IF(COUNTIF(AR!$F:$F,$A5&"_"&0),INDEX(AR!C:C,MATCH($A5&"_"&0,AR!$F:$F,0)),IF(COUNTIF(LS!$F:$F,$A5&"_"&0),INDEX(LS!C:C,MATCH($A5&"_"&0,LS!$F:$F,0)),IF(COUNTIF(EL!$F:$F,$A5&"_"&0),INDEX(EL!C:C,MATCH($A5&"_"&0,EL!$F:$F,0)),IF(COUNTIF(ME!$F:$F,$A5&"_"&0),INDEX(ME!C:C,MATCH($A5&"_"&0,ME!$F:$F,0)),INDEX(GE!C:C,MATCH($A5&"_"&0,GE!$F:$F,0)))))))),""))
Reply With Quote
  #11  
Old 08-22-2017, 05:14 AM
vicmar vicmar is offline update master list automatically from other worksheet Windows 7 64bit update master list automatically from other worksheet Office 2010 64bit
Novice
update master list automatically from other worksheet
 
Join Date: Aug 2017
Posts: 24
vicmar is on a distinguished road
Default

no worries..

Thank you very much... its working but there is some conflict in my other formula.

Attached is the sample of my data:
Attached Files
File Type: xlsx sample.xlsx (81.7 KB, 15 views)

Last edited by vicmar; 08-23-2017 at 03:15 AM.
Reply With Quote
  #12  
Old 08-22-2017, 06:43 AM
NBVC's Avatar
NBVC NBVC is offline update master list automatically from other worksheet Windows 10 update master list automatically from other worksheet Office 2013
The Formula Guy
 
Join Date: Mar 2012
Location: Mississauga, CANADA
Posts: 215
NBVC will become famous soon enoughNBVC will become famous soon enough
Default

Try updating formula:

=IFERROR(IF(SUBSTITUTE(LOOKUP(2,1/((ISTEXT($Z17:$AO17)*($Z17:$AO17<>""))),$Z17:$AO17 ),"","")=B$15,1,""),"")
Reply With Quote
  #13  
Old 08-22-2017, 06:55 AM
vicmar vicmar is offline update master list automatically from other worksheet Windows 7 64bit update master list automatically from other worksheet Office 2010 64bit
Novice
update master list automatically from other worksheet
 
Join Date: Aug 2017
Posts: 24
vicmar is on a distinguished road
Default

it works the way I want it.. thank you very much!
Reply With Quote
  #14  
Old 08-22-2017, 07:34 AM
vicmar vicmar is offline update master list automatically from other worksheet Windows 7 64bit update master list automatically from other worksheet Office 2010 64bit
Novice
update master list automatically from other worksheet
 
Join Date: Aug 2017
Posts: 24
vicmar is on a distinguished road
Default

I notice that after I put all the formula in my actual excel file it becomes slow.

now its ok I change the range to a certain number of rows instead of the whole column.

Thank you

Last edited by vicmar; 08-23-2017 at 02:43 AM.
Reply With Quote
  #15  
Old 08-22-2017, 12:37 PM
NoSparks NoSparks is offline update master list automatically from other worksheet Windows 7 64bit update master list automatically from other worksheet Office 2010 64bit
Excel Hobbyist
 
Join Date: Nov 2013
Location: British Columbia, Canada
Posts: 842
NoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of light
Default

Not your stated preference, but you can check out this VBA macro solution.
No formulas required.
Attached Files
File Type: xlsm sample_vicmar.xlsm (29.6 KB, 13 views)
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Word 2013 question - master list current list markecb Word 6 02-28-2016 01:51 AM
update master list automatically from other worksheet want to put ID no from worksheet ID no master..... mahfuz19 Excel 3 03-13-2014 10:37 AM
update master list automatically from other worksheet How do you update your source docs from a master document? Joyce Word 3 07-12-2013 08:54 AM
Excel 2010 slow update of worksheet bosve73 Excel 2 03-28-2012 05:14 AM
PowerPoint Master - 50 LINKED slides - SLOW Update salfonsi PowerPoint 0 09-27-2008 02:55 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 03:20 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft