Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default How to retrieve entire row (actually 26 columns) of data ?

I want my students to be able to see their grades online w/o viewing the
entire spreadsheet. My intention is to hide the working spreadsheet, & show
them a sheet with the same column headings (quiz 1, quiz 2, etc.). The data
cells will populate w/ the data from the underlying hidden sheet when they
type in their (unique) student ID number.

I'm comortable w/ vlookup, but haven't used the other possibilities, like
index/match, etc., and now I need a way to find the student ID in the
worksheet, & return all the data in that row.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,624
Default How to retrieve entire row (actually 26 columns) of data ?

If your students have access to the XL workbook, you should assume that
they have access to every part of it. XL's internal protection is useful
only for preventing inadvertent mistakes:

http://www.mcgimpsey.com/excel/removepwords.html

and VBA and Workbook-level protection aren't particularly better:

http://www.mcgimpsey.com/excel/fileandvbapwords.html

(and a simple hex editor will reveal most of the data, even if the
student doesn't have XL).

That said, VLOOKUP is just a specialized form of INDEX(MATCH()), so
which implementation you use depends on whether the ID is at the first
column of data or not. For instance, if the ID is in column A:

=VLOOKUP(AA1,A:Z,26,FALSE)

will return the value in column Z corresponding to the match, while if
the ID is in column J instead, this will return the corresponding value
in column B:

=INDEX(B:B, MATCH(AA1,J:J,FALSE))

Note that, even if you use hidden sheets, the unique student ID number
isn't a password - it's probably easily obtainable from other sources.
But if not, giving access to a workbook with names and IDs will fix
that...

In article ,
Father Jack <Father wrote:

I want my students to be able to see their grades online w/o viewing the
entire spreadsheet. My intention is to hide the working spreadsheet, & show
them a sheet with the same column headings (quiz 1, quiz 2, etc.). The data
cells will populate w/ the data from the underlying hidden sheet when they
type in their (unique) student ID number.

I'm comortable w/ vlookup, but haven't used the other possibilities, like
index/match, etc., and now I need a way to find the student ID in the
worksheet, & return all the data in that row.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default How to retrieve entire row (actually 26 columns) of data ?

JE: I appreciate your concern for security, but, in fact, students already
have access to this information in multiple places--both online and on
physical bulletin boards. I'm trying to retrieve a whole row of data,
rather than a single cell. Is that possible?

Father Jack

"JE McGimpsey" wrote in message
...
If your students have access to the XL workbook, you should assume that
they have access to every part of it. XL's internal protection is useful
only for preventing inadvertent mistakes:

http://www.mcgimpsey.com/excel/removepwords.html

and VBA and Workbook-level protection aren't particularly better:

http://www.mcgimpsey.com/excel/fileandvbapwords.html

(and a simple hex editor will reveal most of the data, even if the
student doesn't have XL).

That said, VLOOKUP is just a specialized form of INDEX(MATCH()), so
which implementation you use depends on whether the ID is at the first
column of data or not. For instance, if the ID is in column A:

=VLOOKUP(AA1,A:Z,26,FALSE)

will return the value in column Z corresponding to the match, while if
the ID is in column J instead, this will return the corresponding value
in column B:

=INDEX(B:B, MATCH(AA1,J:J,FALSE))

Note that, even if you use hidden sheets, the unique student ID number
isn't a password - it's probably easily obtainable from other sources.
But if not, giving access to a workbook with names and IDs will fix
that...

In article ,
Father Jack <Father wrote:

I want my students to be able to see their grades online w/o viewing the
entire spreadsheet. My intention is to hide the working spreadsheet, &
show
them a sheet with the same column headings (quiz 1, quiz 2, etc.). The
data
cells will populate w/ the data from the underlying hidden sheet when
they
type in their (unique) student ID number.

I'm comortable w/ vlookup, but haven't used the other possibilities, like
index/match, etc., and now I need a way to find the student ID in the
worksheet, & return all the data in that row.



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,624
Default How to retrieve entire row (actually 26 columns) of data ?

Use VLOOKUP...

In article ,
"Father Jack" wrote:

JE: I appreciate your concern for security, but, in fact, students already
have access to this information in multiple places--both online and on
physical bulletin boards. I'm trying to retrieve a whole row of data,
rather than a single cell. Is that possible?

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
How to retrieve last date and amount from columns? tfrentz Excel Worksheet Functions 5 October 30th 06 03:49 AM
Retrieve multiple data rows data from a very long list and copy t mathew Excel Discussion (Misc queries) 1 September 13th 06 08:24 PM
Filter entire columns stevec Excel Discussion (Misc queries) 0 September 8th 06 08:37 PM
Concatenating entire columns [email protected] Excel Discussion (Misc queries) 2 August 15th 06 09:17 PM
sharing entire columns grflded Excel Worksheet Functions 2 September 26th 05 03:48 AM


All times are GMT +1. The time now is 08:06 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"