Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default Seating Chart

Hi,

I want to make a seating chart report for my student's finals testing.

I have an Excel spreadsheet with each student's name, their room number, row
number, seat number.

I want to make a chart that is a visual aid to where they sit. So I don't
jsut want a table listing of names and rows, I want it to come out in the
rows and in the right order. It doesn't have to be spectacular, but it should
be a visual aid.

For example:

------------------------------ROOM 201

ROW 1------------ROW 2------------- ROW 3--------------- ROW 4

Jack Frost----- Amelia Earheart--- George Washington -----Joe Shmoe

Marie Curie----- Abe Lincoln --------Hillary Clinton -------Marc Summers

(The lines are just to hold the place so you can see where everything should
be.)

And then do the next room.

How should I do this? How should I structure my table(s)?

The hard part (I think) is getting multiple columns that each have a
different record.

Thanks!

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,071
Default Seating Chart

You say: "The hard part (I think) is getting multiple columns that each
have a different record." What do you mean by "record"?
I imagine placing these "charts" in different sheets, one "chart" or room,
per sheet. The sheet would have the room number at the top. The "chart"
would consist of placing the names in individual columns (such columns are
called "rows" in a classroom), with maybe a blank narrow column between the
"rows" to separate them, and maybe blank rows to provide some separation
front to back, very much what you showed in your original post. Does this
sound like what you want? HTH Otto

"jschping" wrote in message
...
Hi,

I want to make a seating chart report for my student's finals testing.

I have an Excel spreadsheet with each student's name, their room number,
row
number, seat number.

I want to make a chart that is a visual aid to where they sit. So I don't
jsut want a table listing of names and rows, I want it to come out in the
rows and in the right order. It doesn't have to be spectacular, but it
should
be a visual aid.

For example:

------------------------------ROOM 201

ROW 1------------ROW 2------------- ROW 3--------------- ROW 4

Jack Frost----- Amelia Earheart--- George Washington -----Joe Shmoe

Marie Curie----- Abe Lincoln --------Hillary Clinton -------Marc Summers

(The lines are just to hold the place so you can see where everything
should
be.)

And then do the next room.

How should I do this? How should I structure my table(s)?

The hard part (I think) is getting multiple columns that each have a
different record.

Thanks!

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,441
Default Seating Chart

Set up another worksheet with the formatting that you want, with Row numbers across row 2 as the
heading , and Seat numbers down column A starting in row 3 as the labels. Use values that match the
values in your data table - for example, if you have Row 1 as the entry, use Row 1; if you have 1
as the entry, then just use 1.

Put the Room number in another cell, let's say cell A1.

In each of the cells where you want a name, enter the formula

=IF(SUMPRODUCT((DataSheet!$B$1:$B$100=$A$1)*(DataS heet!$C$1:$C$100=B$2)*(DataSheet!$D$1:$D$100=$A3)* ROW($B$1:$B$100))<0,INDEX(DataSheet!$A:$A,SUMPROD UCT((DataSheet!$B$1:$B$100=$A$1)*(DataSheet!$C$1:$ C$100=B$2)*(DataSheet!$D$1:$D$100=$A3)*ROW($B$1:$B $100))),"")

This assumes that names are in column A, rooms in column B, Rows in C, and Seats in D of sheet
DataSheet. Change the 100 to a number at tleast as large as the highest row of your data table

Then copy that formula to all the other cells where you want names to appear.



HTH,
Bernie
MS Excel MVP


"jschping" wrote in message
...
Hi,

I want to make a seating chart report for my student's finals testing.

I have an Excel spreadsheet with each student's name, their room number, row
number, seat number.

I want to make a chart that is a visual aid to where they sit. So I don't
jsut want a table listing of names and rows, I want it to come out in the
rows and in the right order. It doesn't have to be spectacular, but it should
be a visual aid.

For example:

------------------------------ROOM 201

ROW 1------------ROW 2------------- ROW 3--------------- ROW 4

Jack Frost----- Amelia Earheart--- George Washington -----Joe Shmoe

Marie Curie----- Abe Lincoln --------Hillary Clinton -------Marc Summers

(The lines are just to hold the place so you can see where everything should
be.)

And then do the next room.

How should I do this? How should I structure my table(s)?

The hard part (I think) is getting multiple columns that each have a
different record.

Thanks!



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default Seating Chart

Wow! That looks delicious! Could you please explain how it works?

Thanks!

"Bernie Deitrick" wrote:

Set up another worksheet with the formatting that you want, with Row numbers across row 2 as the
heading , and Seat numbers down column A starting in row 3 as the labels. Use values that match the
values in your data table - for example, if you have Row 1 as the entry, use Row 1; if you have 1
as the entry, then just use 1.

Put the Room number in another cell, let's say cell A1.

In each of the cells where you want a name, enter the formula

=IF(SUMPRODUCT((DataSheet!$B$1:$B$100=$A$1)*(DataS heet!$C$1:$C$100=B$2)*(DataSheet!$D$1:$D$100=$A3)* ROW($B$1:$B$100))<0,INDEX(DataSheet!$A:$A,SUMPROD UCT((DataSheet!$B$1:$B$100=$A$1)*(DataSheet!$C$1:$ C$100=B$2)*(DataSheet!$D$1:$D$100=$A3)*ROW($B$1:$B $100))),"")

This assumes that names are in column A, rooms in column B, Rows in C, and Seats in D of sheet
DataSheet. Change the 100 to a number at tleast as large as the highest row of your data table

Then copy that formula to all the other cells where you want names to appear.



HTH,
Bernie
MS Excel MVP


"jschping" wrote in message
...
Hi,

I want to make a seating chart report for my student's finals testing.

I have an Excel spreadsheet with each student's name, their room number, row
number, seat number.

I want to make a chart that is a visual aid to where they sit. So I don't
jsut want a table listing of names and rows, I want it to come out in the
rows and in the right order. It doesn't have to be spectacular, but it should
be a visual aid.

For example:

------------------------------ROOM 201

ROW 1------------ROW 2------------- ROW 3--------------- ROW 4

Jack Frost----- Amelia Earheart--- George Washington -----Joe Shmoe

Marie Curie----- Abe Lincoln --------Hillary Clinton -------Marc Summers

(The lines are just to hold the place so you can see where everything should
be.)

And then do the next room.

How should I do this? How should I structure my table(s)?

The hard part (I think) is getting multiple columns that each have a
different record.

Thanks!



.

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default Seating Chart

Hi,

I also got a circular reference error emssage when I copied it to the other
cells. It only worked for A3. What am I doing wrong?

Thanks!

"Bernie Deitrick" wrote:

Set up another worksheet with the formatting that you want, with Row numbers across row 2 as the
heading , and Seat numbers down column A starting in row 3 as the labels. Use values that match the
values in your data table - for example, if you have Row 1 as the entry, use Row 1; if you have 1
as the entry, then just use 1.

Put the Room number in another cell, let's say cell A1.

In each of the cells where you want a name, enter the formula

=IF(SUMPRODUCT((DataSheet!$B$1:$B$100=$A$1)*(DataS heet!$C$1:$C$100=B$2)*(DataSheet!$D$1:$D$100=$A3)* ROW($B$1:$B$100))<0,INDEX(DataSheet!$A:$A,SUMPROD UCT((DataSheet!$B$1:$B$100=$A$1)*(DataSheet!$C$1:$ C$100=B$2)*(DataSheet!$D$1:$D$100=$A3)*ROW($B$1:$B $100))),"")

This assumes that names are in column A, rooms in column B, Rows in C, and Seats in D of sheet
DataSheet. Change the 100 to a number at tleast as large as the highest row of your data table

Then copy that formula to all the other cells where you want names to appear.



HTH,
Bernie
MS Excel MVP


"jschping" wrote in message
...
Hi,

I want to make a seating chart report for my student's finals testing.

I have an Excel spreadsheet with each student's name, their room number, row
number, seat number.

I want to make a chart that is a visual aid to where they sit. So I don't
jsut want a table listing of names and rows, I want it to come out in the
rows and in the right order. It doesn't have to be spectacular, but it should
be a visual aid.

For example:

------------------------------ROOM 201

ROW 1------------ROW 2------------- ROW 3--------------- ROW 4

Jack Frost----- Amelia Earheart--- George Washington -----Joe Shmoe

Marie Curie----- Abe Lincoln --------Hillary Clinton -------Marc Summers

(The lines are just to hold the place so you can see where everything should
be.)

And then do the next room.

How should I do this? How should I structure my table(s)?

The hard part (I think) is getting multiple columns that each have a
different record.

Thanks!



.



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,441
Default Seating Chart

A3 must contain the row designation value, not the formula. The formula
could be in cell B3, but you need at least two rows above and one column to
the left of your seating chart area.

Basically, it works by determining the row with the data of interest, and
pulling that name, by comparing all the values in your table with the values
that you want - class, row, and seat.

HTH,
Bernie
MS Excel MVP


"jschping" wrote in message
...
Hi,

I also got a circular reference error emssage when I copied it to the
other
cells. It only worked for A3. What am I doing wrong?

Thanks!

"Bernie Deitrick" wrote:

Set up another worksheet with the formatting that you want, with Row
numbers across row 2 as the
heading , and Seat numbers down column A starting in row 3 as the labels.
Use values that match the
values in your data table - for example, if you have Row 1 as the
entry, use Row 1; if you have 1
as the entry, then just use 1.

Put the Room number in another cell, let's say cell A1.

In each of the cells where you want a name, enter the formula

=IF(SUMPRODUCT((DataSheet!$B$1:$B$100=$A$1)*(DataS heet!$C$1:$C$100=B$2)*(DataSheet!$D$1:$D$100=$A3)* ROW($B$1:$B$100))<0,INDEX(DataSheet!$A:$A,SUMPROD UCT((DataSheet!$B$1:$B$100=$A$1)*(DataSheet!$C$1:$ C$100=B$2)*(DataSheet!$D$1:$D$100=$A3)*ROW($B$1:$B $100))),"")

This assumes that names are in column A, rooms in column B, Rows in C,
and Seats in D of sheet
DataSheet. Change the 100 to a number at tleast as large as the highest
row of your data table

Then copy that formula to all the other cells where you want names to
appear.



HTH,
Bernie
MS Excel MVP


"jschping" wrote in message
...
Hi,

I want to make a seating chart report for my student's finals testing.

I have an Excel spreadsheet with each student's name, their room
number, row
number, seat number.

I want to make a chart that is a visual aid to where they sit. So I
don't
jsut want a table listing of names and rows, I want it to come out in
the
rows and in the right order. It doesn't have to be spectacular, but it
should
be a visual aid.

For example:

------------------------------ROOM 201

ROW 1------------ROW 2------------- ROW 3--------------- ROW 4

Jack Frost----- Amelia Earheart--- George Washington -----Joe Shmoe

Marie Curie----- Abe Lincoln --------Hillary Clinton -------Marc
Summers

(The lines are just to hold the place so you can see where everything
should
be.)

And then do the next room.

How should I do this? How should I structure my table(s)?

The hard part (I think) is getting multiple columns that each have a
different record.

Thanks!



.


  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,180
Default Seating Chart

Excel 2007 Chart
Label seats.
Real seats.
http://www.mediafire.com/file/z4otqnnj3fn/11_10_09.xlsm
  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default Seating Chart

Thanks so much! It's beautiful!

Is there a way to make it 6 rows? In my school for finals we have 6 rows
per room.

Thanks!

"Herbert Seidenberg" wrote:

Excel 2007 Chart
Label seats.
Real seats.
http://www.mediafire.com/file/z4otqnnj3fn/11_10_09.xlsm
.

  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,180
Default Seating Chart

Excel 2007 PivotChart
Added a row and revised method.
No more formulas, easier to scale.
http://c0444202.cdn.cloudfiles.racks.../11_10_09.xlsm
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
seating chart marpiano New Users to Excel 2 September 10th 07 08:26 AM
Workplace Seating Chart BobbySox Excel Discussion (Misc queries) 2 November 9th 06 06:23 AM
How do I set up a wedding seating chart? gourmet New Users to Excel 7 September 14th 05 11:27 PM
formula for a seating chart M Zahedi Excel Worksheet Functions 1 March 18th 05 05:43 PM
seating chart cds Excel Worksheet Functions 6 January 15th 05 11:19 PM


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