Lounge How was your day? Anything goes but please keep it PG-13!

anyone good with excel?

Old Dec 19, 2011 | 06:21 PM
  #1  
joebaggg's Avatar
Thread Starter
Contributors
 
Joined: Jul 2009
Posts: 611
Likes: 0
From: Toms River NJ
My Ride: 2013 535i xDrive AW/Black M-kit
Default

i have a big project to do for my appraisal company and i cant figure out how to do this comparison in excel. i set up an example of what i need to do in a very simple form. the actual tables i need too do this too are much much larger. if anyone can explain to me what function would do this and how to use it id really appreciate it. im hoping theres an excel function and i dont have to use some VB coding. any help greatly appreciated. deadline approaching.

it wont let me upload an excel file so here is a screen shot
Attached Thumbnails anyone good with excel?-sample-data-merge.jpg  
Reply
Old Dec 19, 2011 | 06:42 PM
  #2  
acuteperformance's Avatar
Former Vendor
 
Joined: Apr 2008
Posts: 5,051
Likes: 1
From: SoCal
My Ride: 14 550i
Default

use vlookup


Michael
Owner
Acute Performance
Reply
Old Dec 19, 2011 | 06:48 PM
  #3  
west's Avatar
Senior Members
 
Joined: Apr 2009
Posts: 1,122
Likes: 3
From: Seattle
Default

Originally Posted by acuteperformance
use vlookup
Michael
Owner
Acute Performance
Michael is a part-time top secret Microsoft ninja..
Reply
Old Dec 19, 2011 | 07:03 PM
  #4  
joebaggg's Avatar
Thread Starter
Contributors
 
Joined: Jul 2009
Posts: 611
Likes: 0
From: Toms River NJ
My Ride: 2013 535i xDrive AW/Black M-kit
Default

Originally Posted by acuteperformance
use vlookup

Michael
Owner
Acute Performance


thank you i will look further into that
Reply
Old Dec 19, 2011 | 07:58 PM
  #5  
acuteperformance's Avatar
Former Vendor
 
Joined: Apr 2008
Posts: 5,051
Likes: 1
From: SoCal
My Ride: 14 550i
Default

lol my wife is a CPA and i <3 excel.

Originally Posted by west
Michael is a part-time top secret Microsoft ninja..
Reply
Old Dec 20, 2011 | 12:30 PM
  #6  
m630's Avatar
Contributors
 
Joined: Nov 2004
Posts: 2,460
Likes: 0
From: NYC & LI
Default

if what you are trying to do is match a common variable and pull data from a separate worksheet based on that value, then yes, as noted above, you can easily use a vlookup function to accomplish this task.


So , to accomplish this merge, you would need to use a formula such as this: =VLOOKUP(A3,Sheet2!A:B,2,FALSE)

Now I?ll break down the formula in parenthesis:
This statement says that the value(s) that you are using as the control are in Column A ? where your first value is in A3.

Now, assuming you have the second set of data on a separate worksheet (such as Sheet2), you would place that data in columns A and B so that when you are ?looking? for it on the first sheet(your merged sheet) you will pull the proper data set(This relates to the Sheet2!A:. Next, you are telling the compute what to do when you find the match, which relates to the 2 in the formula, and it just means that when you find the value match, move two to the right ? the value you are matching is always 1, so to pull data in a column next to the match, you would enter a 2 and so on?Finally, the FALSE command says that if you don?t find a match, return a value of N/A.

Of course, to cheat a bit, go back to your example and take out the value you have listed in Column J14, which shows 12.25.

After you delete that value, enter this into the cell: =VLOOKUP(I14,A3:B11,2,FALSE). You should see your value reappear. You can then copy and paste this down the column to auto populate your values.

Give it a try and then you can modify as required based on how I describe above...good luck
Reply
Old Dec 20, 2011 | 02:41 PM
  #7  
joebaggg's Avatar
Thread Starter
Contributors
 
Joined: Jul 2009
Posts: 611
Likes: 0
From: Toms River NJ
My Ride: 2013 535i xDrive AW/Black M-kit
Default

thank you m630. this is why i love this forum
Reply
Old Dec 20, 2011 | 03:15 PM
  #8  
joebaggg's Avatar
Thread Starter
Contributors
 
Joined: Jul 2009
Posts: 611
Likes: 0
From: Toms River NJ
My Ride: 2013 535i xDrive AW/Black M-kit
Default

Originally Posted by m630
if what you are trying to do is match a common variable and pull data from a separate worksheet based on that value, then yes, as noted above, you can easily use a vlookup function to accomplish this task.


So , to accomplish this merge, you would need to use a formula such as this: =VLOOKUP(A3,Sheet2!A:B,2,FALSE)

Now I?ll break down the formula in parenthesis:
This statement says that the value(s) that you are using as the control are in Column A ? where your first value is in A3.

Now, assuming you have the second set of data on a separate worksheet (such as Sheet2), you would place that data in columns A and B so that when you are ?looking? for it on the first sheet(your merged sheet) you will pull the proper data set(This relates to the Sheet2!A:. Next, you are telling the compute what to do when you find the match, which relates to the 2 in the formula, and it just means that when you find the value match, move two to the right ? the value you are matching is always 1, so to pull data in a column next to the match, you would enter a 2 and so on?Finally, the FALSE command says that if you don?t find a match, return a value of N/A.

Of course, to cheat a bit, go back to your example and take out the value you have listed in Column J14, which shows 12.25.

After you delete that value, enter this into the cell: =VLOOKUP(I14,A3:B11,2,FALSE). You should see your value reappear. You can then copy and paste this down the column to auto populate your values.

Give it a try and then you can modify as required based on how I describe above...good luck

ok just tried it, i think this is exactly what im looking for. one issue i had while trying it. when i coppied the formula =VLOOKUP(I13,A3:B11,2,FALSE) into J13 it worked then when i tried to autofill the rest of the J column J14-J24 the array reference part of the formula (A3:B11) changed in each row to (A4:B12) then (A5:B13) which is no good because that puts you outside the table array. alternativly if i copy and paste the exact same formula into J13-J24 the lookup value stays constant which is ging to duplicate the same result for each row. is there a way i can autofill column J with the previous mentioned formula but keep the table array portion (A3:B11) of the function the same?


EDIT ******************* SOLVED MY OWN PROBLEM***************************

google search showed that $A$3:$B$11 will keep it constant... man excel is pretty intense hahah thanks again m630 and acuteperformance
Reply
Old Dec 21, 2011 | 04:35 AM
  #9  
m630's Avatar
Contributors
 
Joined: Nov 2004
Posts: 2,460
Likes: 0
From: NYC & LI
Default




excel can be "fun" sometimes
Reply
Related Topics
Thread
Thread Starter
Forum
Replies
Last Post
mainuser12
E60 Discussion
18
May 9, 2015 06:30 PM
b1mmerbob
E60, E61 Parts, Accessories and Mods
1
Apr 17, 2015 11:41 AM
Hyper_545i
E60 Discussion
5
Apr 16, 2015 02:18 AM
BEZ101
E60 Discussion
3
Apr 14, 2015 12:40 PM
Sakru
E60 Discussion
5
Mar 26, 2015 09:26 AM


Thread Tools
Search this Thread

All times are GMT -8. The time now is 06:57 PM.