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

anyone good with excel?

Thread Tools
 
Search this Thread
 
Old 12-19-2011, 06:21 PM
  #1  
Contributors
Thread Starter
 
joebaggg's Avatar
 
Join Date: Jul 2009
Location: Toms River NJ
Posts: 611
Likes: 0
Received 0 Likes on 0 Posts
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  
Old 12-19-2011, 06:42 PM
  #2  
Former Vendor
 
acuteperformance's Avatar
 
Join Date: Apr 2008
Location: SoCal
Posts: 5,051
Likes: 0
Received 1 Like on 1 Post
My Ride: 14 550i
Default

use vlookup


Michael
Owner
Acute Performance
Old 12-19-2011, 06:48 PM
  #3  
Senior Members
 
west's Avatar
 
Join Date: Apr 2009
Location: Seattle
Posts: 1,122
Likes: 0
Received 3 Likes on 3 Posts
Default

Originally Posted by acuteperformance
use vlookup
Michael
Owner
Acute Performance
Michael is a part-time top secret Microsoft ninja..
Old 12-19-2011, 07:03 PM
  #4  
Contributors
Thread Starter
 
joebaggg's Avatar
 
Join Date: Jul 2009
Location: Toms River NJ
Posts: 611
Likes: 0
Received 0 Likes on 0 Posts
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
Old 12-19-2011, 07:58 PM
  #5  
Former Vendor
 
acuteperformance's Avatar
 
Join Date: Apr 2008
Location: SoCal
Posts: 5,051
Likes: 0
Received 1 Like on 1 Post
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..
Old 12-20-2011, 12:30 PM
  #6  
Contributors
 
m630's Avatar
 
Join Date: Nov 2004
Location: NYC & LI
Posts: 2,460
Likes: 0
Received 0 Likes on 0 Posts
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
Old 12-20-2011, 02:41 PM
  #7  
Contributors
Thread Starter
 
joebaggg's Avatar
 
Join Date: Jul 2009
Location: Toms River NJ
Posts: 611
Likes: 0
Received 0 Likes on 0 Posts
My Ride: 2013 535i xDrive AW/Black M-kit
Default

thank you m630. this is why i love this forum
Old 12-20-2011, 03:15 PM
  #8  
Contributors
Thread Starter
 
joebaggg's Avatar
 
Join Date: Jul 2009
Location: Toms River NJ
Posts: 611
Likes: 0
Received 0 Likes on 0 Posts
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
Old 12-21-2011, 04:35 AM
  #9  
Contributors
 
m630's Avatar
 
Join Date: Nov 2004
Location: NYC & LI
Posts: 2,460
Likes: 0
Received 0 Likes on 0 Posts
Default




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



Quick Reply: anyone good with excel?



All times are GMT -8. The time now is 05:12 PM.