Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 9
Default auto entry of data on keystrokes

If we set up 1 sheet of sorted data within a "book", then go to another
sheet 2 to have some (or many) of these data copied to a column in sheet 2
that is then used for a customer quote sheet, with perhaps subtotals and
grand totals

For instance, say we have 150 products which we can sort by name/size/price
that we've entered in sheet 1.

Then, on the 2nd sheet, after placing the cursor on a particular column/row
we'd like to use a simple numeric keyboard (AltXXX, maybe?) entry that
corresponds to what's on sheet 1.
We'd print out sheet 1 for quick reference.

Or, has anyone got a better idea/plan ?
Thanks



  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,346
Default auto entry of data on keystrokes

Hi,

There is no built in key to do this. You could write a macro and assign a
shortcut key.

Cheers,
Shane Devenshire

"gatz" wrote:

If we set up 1 sheet of sorted data within a "book", then go to another
sheet 2 to have some (or many) of these data copied to a column in sheet 2
that is then used for a customer quote sheet, with perhaps subtotals and
grand totals

For instance, say we have 150 products which we can sort by name/size/price
that we've entered in sheet 1.

Then, on the 2nd sheet, after placing the cursor on a particular column/row
we'd like to use a simple numeric keyboard (AltXXX, maybe?) entry that
corresponds to what's on sheet 1.
We'd print out sheet 1 for quick reference.

Or, has anyone got a better idea/plan ?
Thanks



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11
Default auto entry of data on keystrokes

I think what you need is VLOOKUP. Say on Sheet 1 you have your complete list
of Part #s in column A, Descriptions in column B and Prices in column C. In
Sheet 2 you have a Customer Quote Form where you type part numbers in the
frst column (e.g. B5:B20) and the corresponding Descriptions and Prices
automatically appear in the 2nd (e.g. C5:C20) and 3rd (e.g. D5:D20) columns.
To get this to work, in Sheet 2 in cell C5 you would use a formula such as
=VLOOKUP($B5,Sheet1!$A$1:$C$200,2,0) and in D5 you would use
=VLOOKUP($B5,Sheet1!$A$1:$C$200,3,0). When you type a Part # in B5, the first
VLOOKUP up formula in C5 looks in the first column of the table in Sheet 1
for a match for the value in B5 on Sheet 2. If it finds it, it returns the
corresponding value from column 2 (the column # is the 3rd argument of the
VLOOKUP function) of that table. The VLOOKUP formula in the Price column on
Sheet 2 does the same lookup but returns the corresponding value from the 3rd
column of the table.

To prevent #N/A errors in your VLOOKUP formulas, modify the formula with...
=IF(COUNTIF(Sheet1!$A$1:$C$200,$B5),VLOOKUP($B5,Sh eet1!$A$1:$C$200,2,0),"")

Hope this is what you need.

Francis J Hayes (The Excel Addict)

P.S. I publish a weekly newsletter called 'Spreadsheet Tips From An Excel
Addict' at http://www.TheExcelAddict.com




"gatz" wrote:

If we set up 1 sheet of sorted data within a "book", then go to another
sheet 2 to have some (or many) of these data copied to a column in sheet 2
that is then used for a customer quote sheet, with perhaps subtotals and
grand totals

For instance, say we have 150 products which we can sort by name/size/price
that we've entered in sheet 1.

Then, on the 2nd sheet, after placing the cursor on a particular column/row
we'd like to use a simple numeric keyboard (AltXXX, maybe?) entry that
corresponds to what's on sheet 1.
We'd print out sheet 1 for quick reference.

Or, has anyone got a better idea/plan ?
Thanks



Reply
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
Data Filter Keystrokes Paul B[_2_] Excel Discussion (Misc queries) 5 January 16th 09 05:46 PM
Auto entry of data based on entry of text in another column or fie Judy Rose Excel Discussion (Misc queries) 2 May 21st 08 02:14 PM
How to set Auto-Change letters into Uppercases for Data entry in E Cpviv Excel Worksheet Functions 3 May 7th 08 10:45 AM
Data Entry Online, Data Format, Data Conversion and Data EntryServices through Data Entry Outsourcing [email protected] Excel Discussion (Misc queries) 0 March 20th 08 01:45 PM
How do I set up entry box to auto-alphabatize each entry in list? jhakers Excel Discussion (Misc queries) 0 February 14th 08 09:01 PM


All times are GMT +1. The time now is 04:44 AM.

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"