+ Reply to Thread
Results 1 to 11 of 11

Seating Chart

  1. #1
    Registered User
    Join Date
    01-09-2023
    Location
    Canada
    MS-Off Ver
    Excel 2019
    Posts
    8

    Seating Chart

    Hello,

    I am creating a seating chart for a banquet. All the banquet attendees and their information is provided through a registration website. Currently, I assign people to a table using an ID number. Once someone has been sat, column E will be blank when someone is sat and NO TABLE when they are not sat. Can I edit this so instead of blank it will actually say which table they have been sat at? My current set up has this function:

    =IF(COUNTIF($I$3:$W$30,'Seating Assignments'!$D2)=1,"","NO TABLE")

    Thanks!
    Attached Files Attached Files

  2. #2
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 Version 2405 Win 11 Home 64 Bit
    Posts
    23,895

    Re: Seating Chart

    Look at this link for an alternative solution to a seating chart

    https://www.contextures.com/excelsea...uesttable.html
    Alan עַם יִשְׂרָאֵל חַי


    Change an Ugly Report with Power Query
    Database Normalization
    Complete Guide to Power Query
    Man's Mind Stretched to New Dimensions Never Returns to Its Original Form

  3. #3
    Registered User
    Join Date
    01-09-2023
    Location
    Canada
    MS-Off Ver
    Excel 2019
    Posts
    8

    Re: Seating Chart

    Unfortunatly, I have looked at that post many times. This banquet will be 450+ people so a drop down list isn't ideal. My set up allows me to sort by name or company to easily find the people needed and then drop their assigned ID into my table. I just want it to return a table number value so when I send out my mass email with everyone's table assignments I do not have to manually enter anything.

  4. #4
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,950

    Re: Seating Chart

    And you have Excel 2019?Not 2021 or 365?
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  5. #5
    Registered User
    Join Date
    01-09-2023
    Location
    Canada
    MS-Off Ver
    Excel 2019
    Posts
    8

    Re: Seating Chart

    Yes, 2019 currently installed. I prefer to use google sheets but many of the functions were not working and I did not want to spend time translating into a form google could read.

  6. #6
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,734

    Re: Seating Chart

    Are you saying that you enter the ID numbers into the cells in columns I to W, and that you want the appropriate heading (Table number) to appear in column E?

    Note that although the formula that you quote in your first post refers to cell D2, within the sample file it refers to cell D1 (unless you want to disregard row 2 of columns A to E - but then, why have an ID of 1 in cell D2 ??)

    Pete

  7. #7
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,210

    Re: Seating Chart

    Using "helper" columns

    in Y2

    =INT(((SUMPRODUCT(($I$2:$W$30=$D2)*((ROW($I$2:$I$30))))-2)-1)/10)

    in Z2

    =SUMPRODUCT(($I$2:$W$30=$D2)*COLUMN($I$1:$W$1))-8

    in AA2

    =Y2*15+Z2

    in E2

    =IF(COUNTIF($I$3:$W$30,'Seating Assignments'!$D2)=1,"Table " &$AA2,"NO TABLE")
    Attached Files Attached Files
    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.

  8. #8
    Forum Expert
    Join Date
    04-14-2009
    Location
    Taiwan
    MS-Off Ver
    Excel 2016,2019,O365
    Posts
    2,005

    Re: Seating Chart

    E2
    =IF(COUNTIF($I$3:$W$30,D2)>0,INDEX($1:$1000,SUM(INT(($I$3:$W$30=D2)*ROW($I$3:$W$30)/10))*10+2,SUM(($I$3:$W$30=D2)*COLUMN($I$3:$W$30))),"No Table")
    Attached Files Attached Files

  9. #9
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,734

    Re: Seating Chart

    You can use this array* formula in cell E2:

    =IF(COUNTIF($I$3:$W$30,'Seating Assignments'!$D2)=1,INDEX($I$1:$W$30,(INT((MIN(IF($I$3:$W$30=$D2,ROW($I$3:$W$30)))-3)/10)*10)+2,MIN(IF($I$3:$W$30=$D2,COLUMN($I:$W)))-8),"NO TABLE")

    then copy down.

    * Note that an array formula needs to be confirmed using the key combination of Ctrl-Shift-Enter (CSE), rather than the usual Enter.

    You might also think about using conditional formatting on the cells in column E to alert you to the possibility of entering an ID number more than once. You can use a CF rule similar to your quoted formula, i.e.:

    =COUNTIF($I$3:$W$30,'Seating Assignments'!$D2)>1

    applied to cells E2:E361 and turn the background colour to red.

    Hope this helps.

    Pete

  10. #10
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,210

    Re: Seating Chart

    @Pete_UK: CF already present for duplicates!!

  11. #11
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,734

    Re: Seating Chart

    Thanks for letting me know, John - I didn't check on that, but I just thought it would be a good idea to include it.

    Pete

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. HELP: Seating Chart
    By superseth in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 07-06-2018, 02:11 AM
  2. Create a seating chart
    By apichardo in forum Excel General
    Replies: 6
    Last Post: 06-04-2012, 10:01 AM
  3. Formula for Seating Chart?
    By skrepsky in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 05-09-2010, 03:07 PM
  4. [SOLVED] How do I set up a wedding seating chart?
    By gourmet in forum Excel - New Users/Basics
    Replies: 7
    Last Post: 09-14-2005, 07:05 PM
  5. formula for a seating chart
    By M Zahedi in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 03-18-2005, 02:06 PM
  6. [SOLVED] formula for a seating chart
    By M Zahedi in forum Excel General
    Replies: 0
    Last Post: 03-18-2005, 11:06 AM
  7. [SOLVED] seating chart
    By cds in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 01-15-2005, 08:06 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1