LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 576
Default VBA Code

Don,

Like Tom says - the formula is easier.

But if you insist on code - use the worksheet change event.

Right click on the sheet tab and select 'View Code'
This will take you to the VBE and the sheet module (not a standard module).
There are 2 selection boxes at the top. The one on the left will be set for
'Worksheet'. Change the one on the right to 'Change'.

Between 'Sub' and 'End Sub' put the following code.

On Error Resume Next
If Target.Column = 1 and Len(Target) 0 Then
Cells(Target.Row,2) = Worksheetfunction.Vlookup(Target,Sheets _
("Sheet2").Range("$A$1:$B$200"),2,False)
End If

Change 'Sheet2' to the name of your worksheet. Adjust the range to fit your
lookup table.
Be aware that the lookup returns #N/A if there isn't a match and the macro
could error. The On Error Resume Next will take care of that.

This should get you started.

Watch for other errors...

--
sb
"Don Rountree" wrote in message
...
I have used VBA in Access, but am not at familiar with the
syntax for Excel. I want to be able to enter an item
number in a cell (A1)in (Sheet1) and when I hit the Enter
key, I want to perform a VLookup on the value in (A1) and
return the item description from (Sheet2) in cell (B2) in
(Sheet1). I hope I have posed my problem clearly enough.
I want to do this with VBA code so that no matter what row
I input an item number on in column A on Sheet1, the code
will find the value on Sheet 2 and paste the results in
the same row in column B. Any help would be appreciated.

Don Rountree



 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
split post code (zip code) out of cell that includes full address Concord Excel Discussion (Misc queries) 4 October 15th 09 06:59 PM
Code to conditional format all black after date specified in code? wx4usa Excel Discussion (Misc queries) 3 December 26th 08 07:06 PM
Drop Down/List w/Code and Definition, only code entered when selec Spiritdancer Excel Worksheet Functions 2 November 2nd 07 03:57 AM
Convert a Number Code to a Text Code Traye Excel Discussion (Misc queries) 3 April 6th 07 09:54 PM
copying vba code to a standard code module 1vagrowr Excel Discussion (Misc queries) 2 November 23rd 05 04:00 PM


All times are GMT +1. The time now is 08:47 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"