excel项目计划

If you're having a party this weekend, you can plan your party seating with Excel. Get this sample Excel seating workbook, enter the guest names on the Lists sheet, then fill the tables by selecting names from data validation drop down lists. After you've assigned a guest to a table, that guest's name disappears from the drop down lists, so you can't accidentally assign a guest to two different seats.

如果您本周末要参加派对,则可以使用Excel计划派对座位。 获取此示例Excel座位工作簿,在“列表”表上输入宾客姓名,然后通过从数据验证下拉列表中选择姓名来填写表格。 在将客人分配到一张桌子后,该客人的名字将从下拉列表中消失,因此您不会意外地将一个客人分配给两个不同的座位。

NOTE: There is a newer seating plan here: Excel Seating Plan with Charts

注意 :这里有一个更新的座位图: 带图表的Excel座位图

Excel座位表 (Excel Seating Plan Tables)

Here's what a seating plan table looks like, after the guest names are selected.

这是选择来宾姓名后的座位计划表的外观。

输入来宾姓名 (Enter the Guest Names)

On a worksheet named Lists, the guest names are typed in column B. Sort the names in alphabetical order, so the names will be easier to find in the data validation drop down lists.

在名为Lists的工作表上,来宾名称在B列中键入。按字母顺序对名称进行排序,因此将更容易在数据验证下拉列表中找到这些名称。

In the sample workbook, you can clear out those names, and enter the names of your guests.

在示例工作簿中,您可以清除这些名称,然后输入来宾的名称。

画桌子和椅子 (Draw the Tables and Chairs)

On a sheet named TablePlan, use the Excel drawing tools to create the tables and chairs. In the sample workbook, there are 3 tables, with 8 chairs at each table.

在名为TablePlan的工作表上,使用Excel绘图工具创建桌子和椅子。 在示例工作簿中,有3张桌子,每张桌子有8张椅子。

Tip: To draw a circle, hold the Shift key while you use the Oval shape drawing tool.

提示:要绘制圆,请在使用椭圆形图形绘制工具时按住Shift键。

You can number and colour code the tables, to make it easier to keep track of things.

您可以对表进行编号和颜色编码,以便更轻松地跟踪事物。

列出桌子和座位 (List the Tables and Seats)

To the left of the table diagram, there is a list of the tables and seat numbers. The tables have the same colour coding as the tables, but that isn't required -- it just makes them easier to match up.

表格图的左侧有表格和座位号的列表。 表格具有与表格相同的颜色编码,但这不是必需的-只是使它们更易于匹配。

In the next column, there are drop down lists where you'll select the guest names. The drop downs were created with data validation.

在下一列中,有一个下拉列表,您可以在其中选择来宾姓名。 下拉列表是通过数据验证创建的。

座位图如何运作 (How the Seating Plan Works)

If you're interested in how the seating plan works, here are the details on the formulas and drop down lists.

如果您对座位计划的工作方式感兴趣,请参考以下公式和下拉列表的详细信息。

来宾清单检查 (Guest List Check)

On the Lists worksheet, there is a formula to check if the name in that row has been assigned a seat. The first name is in cell B1, and this formula is in cell C1:

在“列表”工作表上,有一个公式可以检查该行中的名称是否已分配座位。 名字在单元格B1中,此公式在单元格C1中:

=IF(COUNTIF(TablePlan!$D$2:$D$25,B1),"",ROW())

= IF(COUNTIF(TablePlan!$ D $ 2:$ D $ 25,B1),“”,ROW())

That formula was copied down to the last name.

该公式被复制为姓氏。

If a guest has been assigned to a seat, their name will appear in column D on the TablePlan sheet. In that case, this formula will return an empty string. If a seat hasn't been assigned, the formula will return the row number.

如果已将客人分配给座位,则他们的名字将出现在TablePlan表的D列中。 在这种情况下,此公式将返回一个空字符串。 如果尚未分配座位,则公式将返回行号。

未分配客人名单 (List of Unassigned Guests)

In column D, there is an array formula to list the unassigned names. This list is used for the data validation drop down lists.

在D列中,有一个数组公式列出未分配的名称。 该列表用于数据验证下拉列表。

To create this array formula, cells D1:D24 were selected. Then, this formula was typed, and array entered (press Ctrl+Shift+Enter)

为了创建此数组公式,选择了单元格D1:D24。 然后,键入此公式,并输入数组(按Ctrl + Shift + Enter)

=IF(ROW(B1:B24)-ROW(B1)+1>COUNT(C1:C24),"", INDEX(B:B, SMALL(C1:C24,ROW(INDIRECT("1:"& ROWS(B1:B24))))))

= IF(ROW(B1:B24)-ROW(B1)+1> COUNT(C1:C24),“”,INDEX(B:B,SMALL(C1:C24,ROW(INDIRECT(“ 1:”&ROWS( B1:B24))))))

This is a multi-cell array formula (by DanielM.) that moves blank cells to the bottom of the list. For more information on this formula, see Excel Data Validation – Hide Previously Used Items.

这是一个多单元格数组公式(由DanielM。提出),将空白单元格移到列表的底部。 有关此公式的更多信息,请参见Excel数据验证–隐藏先前使用的项目 。

In the screenshot below, some of the guest have been assigned to seats, and their names don't appear in column D.

在下面的屏幕截图中,一些来宾已被分配到座位,他们的名字没有出现在D列中。

命名范围 (Named Range)

Next, a dynamic named range was created for the unassigned guests list -- it will automatically grow or shrink as guest names are assigned to tables. Here are the steps for creating that named range

接下来,为未分配的来宾列表创建了一个动态的命名范围-当来宾名称分配给表时,它将自动增大或缩小。 以下是创建该命名范围的步骤

  1. On the Excel Ribbon, click the Formulas tab在Excel功能区上,单击“公式”选项卡
  2. Click Define Name单击定义名称
  3. In the New Name dialog box, type NameCheck as the name在“新名称”对话框中,键入NameCheck作为名称
  4. In the Refers to box, type this OFFSET formula, then click OK在“引用”框中,键入此OFFSET公式,然后单击“确定”。

=OFFSET(Lists!$D$1,0,0,COUNTA(Lists!$D$1:$D$24) -COUNTBLANK(Lists!$D$1:$D$24),1)

= OFFSET(清单!$ D $ 1,0,0,COUNTA(清单!$ D $ 1:$ D $ 24)-COUNTBLANK(清单!$ D $ 1:$ D $ 24),1)

数据验证下拉列表 (Data Validation Drop Down Lists)

Next, the drop down lists were created, with these steps:

接下来,使用以下步骤创建下拉列表:

  1. On the TablePlan sheet, select the cells for Guest names, cells D2:D25 in this example.在TablePlan表上,选择来宾名称的单元格,在此示例中为单元格D2:D25。
  2. On the Excel Ribbon, click the Data tab在Excel功能区上,单击“数据”选项卡
  3. Click Data Validation点击数据验证
  4. In the Data Validation dialog box, from the Allow drop down, select List在“数据验证”对话框中,从“允许”下拉列表中,选择“列表”
  5. In the Source box, type:  =NameCheck在“源”框中,键入:= NameCheck
  6. Click OK点击确定

After the drop down lists are added to the cells, you can select a guest name.

将下拉列表添加到单元格后,您可以选择一个来宾名称。

将座位链接到客人 (Link Seats to Guests)

To show the guest names on the assigned seats, the Seat shapes were each linked to one of the Guest name selection cells. Here are the steps for that:Click on the shape for Seat 1 at Table 1.

为了在分配的座位上显示来宾姓名,将“座位”形状分别链接到“来宾姓名”选择单元格之一。 为此,请执行以下步骤:单击表1上座椅1的形状。

  1. Click in the Formula Bar在编辑栏中单击
  2. Type an equal sign, then click on the guest list, where the Table 1 Seat 1 name will be entered输入等号,然后单击来宾列表,在其中输入表1座位1的名称
  3. Press Enter to complete the link按Enter键完成链接

Repeat these steps to link all the seats to the guest link cells.

重复这些步骤,将所有座位链接到访客链接单元。

分配客人座位 (Assign Guest Seats)

Now you can select guest names from the drop down lists on the TablePlan sheet, and get your party organized. Keep all those arguing relatives at separate tables, and everything should go well.

现在,您可以从TablePlan工作表的下拉列表中选择来宾姓名,并组织聚会。 将所有那些争吵的亲戚放在单独的桌子上,一切都会顺利进行。

下载样本文件 (Download the Sample File)

If you're planning your own party, you can download the sample file with an Excel seating arrangement example.

如果您要计划自己的聚会,则可以下载示例文件以及Excel座位安排示例。

NOTE: There is a newer seating plan here: Excel Seating Plan with Charts __________

注意 :这里有一个更新的座位图: 带图表的Excel座位图 __________

翻译自: https://contexturesblog.com/archives/2010/03/05/plan-your-party-seating-with-excel/

excel项目计划


http://www.taodudu.cc/news/show-6104665.html

相关文章:

  • 第十一章 荣府寿宴
  • 电视剧房前屋后剧情介绍第1-47集
  • 成龙寿宴筹善款7000万 嘉宾:比春晚还热闹
  • Wind安装程序出现x80070652错误问题
  • matlab获取基金数据,读取WIND数据(行情、基金净值等)的SAS程序
  • 税务局计算机相关岗位,国家公务员 县区级国税局招收计算机专业的,进去之后做什么。虽然是计算机专业,但学的不好。不知需要这个 - 赏学吧...
  • 国税局计算机硬件,国家税务总局辽宁省税务局 工作动态 【盘税稽查】积极开展计算机兼容改造专项工作...
  • 税务系统计算机设备管理制度,区国税局计算机设备管理办法_规章制度
  • “2.17亿中国电信”拿下国家税务局云平台项目,H3C却是最大赢家
  • python爬取税务局并将数据保存在Excel
  • 成功案例 | 助力贵州省国家税务局从VMware无缝迁移至国产化安超云平台
  • 区块链黑暗森林自救手册
  • python通过jira的接口操作jira
  • jira部署
  • JIRA API
  • jira导出有乱码
  • jira搭建部署
  • JIRA使用说明
  • 搭建JIRA避坑指南
  • JIRA-使用教程_界面_创建、方案配置
  • 小程序使用阿里图标
  • 微信小程序把阿里icon变为组件
  • 微信小程序引入外部icon(阿里巴巴矢量图标)
  • 微信小程序中使用iconfont阿里巴巴矢量图标
  • 如何引入iconfont中的单色图标和多色图标(超简单)
  • 微信小程序使用阿里彩色图标
  • Android仿拼多多拼团堆叠头像
  • 阿里矢量图标iconfont在微信小程序的使用
  • 【微信小程序-原生开发】添加自定义图标(以使用阿里图标库为例)
  • uniapp小程序使用iconfont彩色图标

excel项目计划_使用Excel计划您的聚会座位相关推荐

  1. 学习excel数据分析_为什么Excel是学习数据分析的最佳方法

    学习excel数据分析 它是视觉的,它是透明的,并且使事情变得简单. (It's visual, it's transparent, and it keeps things simple.) The ...

  2. excel表头_「Excel技巧」关于Excel表格打印常见的四个问题,你会解决吗?

    在日常办公中,打印是家常便饭的事.那么,就有朋友在说平时在打印Excel表格的时候,经常会碰到一些问题. 今天我专门对Excel表格打印的常见几个问题整理了一下.大家可以参考参考. 一.如何使打印出来 ...

  3. excel随机数_用Excel做个随机点名

    1.Excel的花样用法 最近需要做一次点名,找了一些app和网页工具都不够利索. 考虑到Excel的花样函数,随机数应该不是问题. 就搜索了"用Excel点名",不负所望. 不消 ...

  4. excel数据库_将excel文件导入mysql数据库教程(PHP实现)

    点击蓝字关注我们!每天获取最新的编程小知识! 源 / php中文网      源 / www.php.cn 在这篇文章中,我将给大家介绍如何使用PHP将excel文件导入mysql数据库.有时候我们需 ...

  5. python读excel乱码_Python读写excel练习_去除excel中乱码行,并添加列

    需求: 把app_student.xls里面的数据, 1.如果这一行数据里面有乱码(及包含?),那么就删掉 2.再加上一列,是否毕业 3.如果班级是天蝎座的话,毕业这一列写成毕业 4.其他班级的写成未 ...

  6. 用python处理excel 数据分析_像Excel一样使用python进行数据分析(1)

    (虽然是转载,但是是我每块都测试过得,容易出问题的地方我会添加一些自己的经验,仅供参考) 摘要:本篇文章通过python与excel的功能对比介绍如何使用python通过函数式编程完成excel中的数 ...

  7. arcgis导入excel数据_导入Excel数据到ArcGIS属性表的两种实用方法

    导入Excel数据到ArcGIS有两种方法,一种是用ArcMap的加载数据(黄色+号那个):另一种是用ArcCatalog直接转为shp文件,两种方法的原理是一样的. 第一种方法 1.Excel数据: ...

  8. excel合并计算_【Excel】合并计算和模拟分析的应用

    [Excel]合并计算和模拟分析的应用 彭怀文 一.合并计算的应用 Excel中的合并计算功能经常被忽视,其实它具备非常强大的合并功能,包括求和.平均值.计数.最大值.最小值等一系列合并计算功能,下面 ...

  9. excel 时间戳_用Excel实战数据分析,WPS真的可以!

    做过数据分析的人都知道,excel是我们手中一个非常强大实用的工具,除非超过三十万的海量数据读取,否则excel甚至是不二之选.这次我们就用excel体验一下数据分析的全流程操作,顺便为WPS exc ...

最新文章

  1. vivado使用自带IP核和创建自己定义的IP核
  2. 从零开始学Win32平台缓冲区溢出(Part1)
  3. React Native知识
  4. HTTP请求中的缓存(cache)机制
  5. 我的世界服务器老是显示已断开,为什么我的服务器玩家老是掉线 - 有问必答 - 最MC论坛 - 我的世界_Minecraft_联机_服主_资讯_MOD_皮肤_交流_作品_中文论坛...
  6. Caffe代码导读(1):Protobuf例子
  7. Java容器类和包装类
  8. PyTorch-图像分类演示
  9. jQuery原理第一天
  10. (43)System Verilog 类中变量随机化
  11. 小程序提交不能保存,后台可以正常保存
  12. session.setattribute 设置后取不到值_从入门到精通,别处学不到的污泥浓度计的使用和维护技巧...
  13. Java多线程编程之Active Object模式
  14. con 元器件符号_电子元器件常用的符号
  15. PS Tray Factory win7 系统托盘 软件用法
  16. 键盘弹不出来情况(一)
  17. linux查看所有文件
  18. html中字段间距代码,css调字体大小代码 css字与字之间的间距怎么调
  19. shiro反序列化漏洞学习(工具+原理+复现)
  20. chapter-2数据库基本知识

热门文章

  1. 冷战——婚姻生活的双刃剑
  2. druid数据源下 sqlserver 出现 对象名 'xxx' 无效
  3. 名帖90 蔡襄 楷书《临锺繇帖卷》
  4. Arch Linux Arm 安装Yaourt
  5. 碳中和推动第四次工业革命
  6. 这三个方法让你实现手写字扫描成电子版
  7. HashMap源码学习——初探
  8. 刷题体验第一天——《录鼎记》第一章
  9. 1.2 Eight Great Ideas in computer Architecture
  10. jpg转bmp(使用libjpeg)