excel条件格式使用_如何使用条件格式在Excel中创建进度栏

excel条件格式使用

excel条件格式使用

image

Progress bars are pretty much ubiquitous these days; we’ve even seen them on some water coolers. A progress bar provides instant feedback on a given process, so why not bring some of that graphical pizzazz into your spreadsheet, using Excel’s Conditional Formatting feature?

如今,进度条几乎无处不在。 我们甚至在一些饮水机上看到它们。 进度栏可提供有关给定过程的即时反馈,那么为什么不使用Excel的条件格式设置功能将一些图形混乱引入到电子表格中呢?

Excel 2010中的进度条 (Progress Bars in Excel 2010)

“Bar-type” conditional formatting has been around since Excel 2007. But Excel 2007 would only make bars with a gradient – the bar would get paler and paler towards the end, so even at 100% it wouldn’t really look like 100%. Excel 2010 addresses this by adding Solid Fill bars that maintain one color all throughout. These are ideal for creating progress bars.

自Excel 2007起就出现了“条形”条件格式。但是Excel 2007只会使条形带有渐变-条形在结尾处会越来越淡,因此即使在100%的条件下,它看起来也不是真正的100% 。 Excel 2010通过添加可始终保持一种颜色的纯色填充条来解决此问题。 这些是创建进度条的理想选择。

创建酒吧 (Creating The Bar)

The first thing you have to do is enter a numeric value into the cell you’d like to format. You can either enter the value directly or use a formula. In our case I’ll just type it in.

您要做的第一件事是在您要格式化的单元格中输入一个数值。 您可以直接输入值,也可以使用公式。 在我们的情况下,我将其键入。

image

Note how I made the column wider; you don’t necessarily have to do this, but it does help make the bar look more like a “bar” (and not just a colored cell).

注意如何使列变宽; 您不必一定要这样做,但这确实有助于使条看起来更像“条”(而不仅仅是彩色单元格)。

Now click Conditional Formatting, select Data Bars and click More Rules.

现在单击条件格式,选择数据栏,然后单击更多规则。

image

In the New Formatting Rule dialog check the box that says Show Bar Only (so the number doesn’t appear in the cell). Under Minimum and Maximum, select Type as Number. Then, set the Value to the minimum (beginning) value of your scale and maximum (the top of your bar, the end of the process). We’ll just go for 0 and 100, but you could set this to anything that works for you.

在“新格式设置规则”对话框中,选中显示“仅显示栏”的框(这样数字不会出现在单元格中)。 在最小和最大下,选择类型作为数字。 然后,将“值”设置为刻度的最小值(开始)和最大值(栏的顶部,过程结束)。 我们只取0和100,但是您可以将其设置为任何适合您的值。

Now let’s configure the Bar Appearance. Make sure the Fill is Solid Fill and select the color you’d like to use. When you’re done, the dialog should look similar to this:

现在,让我们配置条形外观。 确保“填充”为“实心填充”,然后选择您要使用的颜色。 完成后,对话框应类似于以下内容:

image

Now click OK, and you’re done! At this point you should have a beautiful, crisp progress bar adorning your spreadsheet.

现在单击“确定”,您就完成了! 此时,您应该有一个漂亮,清晰的进度条装饰您的电子表格。

翻译自: https://www.howtogeek.com/howto/45677/how-to-create-progress-bars-in-excel-with-conditional-formatting/

excel条件格式使用

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/278770.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

spring技术小结

1.DI和IOC 依赖注入(Dependency Injection)还是控制反转(Inversion of Conctrol) bean通过依赖注入,注册到spring容器里面。spring容器通过控制反转,调用bean。 2.DI的方法 这里网上很多配置注入,构造方法注入,类参数注入&#xf…

raspberry pi_每日新闻摘要:新型iMac,NVIDIA的Raspberry Pi竞争对手等

raspberry piFor the morning of March 19th, 2019, Apple unveiled an updated iMac, NVIDIA showed off a Raspberry Pi competitor, Instagram will let you buy things without leaving the service, Call of Duty is coming to mobile, and a lot more. 在2019年3月19日上…

六) 条件搜索

什么是条件搜索 用关健字与指定的单列或多例进行匹配的搜索 单字段条件搜索 QueryParser queryParser new QueryParser(LuceneUtil.getVersion(),"content",LuceneUtil.getAnalyzer()); 多字段条件搜索,项目中提倡多字段搜索 QueryParser queryParser n…

Ubuntu 16.04/CentOS 6.9安装Apache压力(并发)测试工具ab

说明: ab工具已经在Apache中包含,如果不想安装Apache,那么可以使用下面方法单独安装。 安装: Ubuntu: sudo apt-get install apache2-utils CentOS: sudo yum -y install httpd-tools 官网: h…

鼠标指针放置上面,显示内容_使鼠标指针远离您键入的内容

鼠标指针放置上面,显示内容If your mouse pointer seems to constantly get in the way while you are typing, you aren’t alone… you click in the middle of some text and start typing to insert more, but the cursor stays in the way. There’s a tiny utility calle…

Java基础查漏补缺:(String篇)一个面试题问倒了我,原来String并不简单

先来一道java面试题:String s new String(“zsx”);问:创建了几个String Object? 先别往下看,想想答案 先上一个图: 如图所示,问题所示的语句创建了2个String对象和一个引用。String s new String(“zsx”); 相当于…

06 小数据池 is 和 = = 再谈编码

今日主要内容 1. 小数据池, id() 小数据池针对的是: int, str, bool 在py文件中几乎所有的字符串都会缓存. id() 查看变量的内存地址 2. is和的区别 is 比较的是内存地址 比较的是内容 当两…

geek_愚蠢的怪胎技巧:在Windows 7中启用秘密的“ How-To Geek”模式

geekWe haven’t told anybody before, but Windows has a hidden “How-To Geek Mode” that you can enable which gives you access to every Control Panel tool on a single page—and we’ve documented the secret method for you here. 我们以前没有告诉过任何人&#…

使用MetaPost绘制流程图

小白最近闲来无事,自学了一点metapost,主要用它来绘制拓扑图或流程图。小白最近在写自己从工作以来的所学,写成了一份PDF的电子文档(小白不太会使用MS Word)。小白又不想使用JPEG或PNG格式的图片作为插图,因…

基于GDAL库,读取海洋风场数据(.nc格式)c++版

经过这一段时间的对海洋数据的处理,接触了大量的与海洋相关的数据,例如海洋地形、海洋表面温度、盐度、湿度、云场、风场等数据,除了地形数据是grd格式外,其他的都是nc格式的数据。本文将以海洋风场数据为例,进行nc格式…

zune linux_快速提示:在出售Zune HD之前,先擦除所有内容

zune linuxBefore selling your Zune HD online or to another individual, you’ll probably want to erase all of its content. Here we show you how to erase all of the content through the Zune Desktop Player. 在在线上出售Zune HD或将其出售给其他人之前&#xff0c…

SSM框架——使用MyBatis Generator自动创建代码

SSM框架——使用MyBatis Generator自动创建代码 这是通过命令行, 不用ide插件. 若在IDEA中通过插件generator, 还可以参考另一篇: IDEA搭建SpringSpringMVCmybatis框架教程转载于:https://www.cnblogs.com/yadongliang/p/8097449.html

镜像VirtualBox 下安装 CentOS 7搭建python项目

一、下载和安装VirtualBox工具 CentOS 镜像 下载地址(windows x86):百度网盘 提取码:z44g 安装说明:简书-XiTeacher 二、下载OS辅助工具——putty,mtputty,winscp 下载地址(windo…

Python基础七(函数)

函数概述 函数:组织好的、可重复使用的。杉树能提高应用的模块性和代码的重复利用性。Python提供了很多的内置函数,比如len()等等,可以自行定义函数。 函数的定义 def 函数名(参数列表): #函数定义 函数体…

ios 取消交互_每日新闻摘要:Google披露了iOS“无交互”漏洞

ios 取消交互Google, through its Project Zero initiative, disclosed six vulnerabilities in iOS. In each case, a hacker could execute remote code on someone’s iPhone without any interaction by the user. Apple’s iOS 12.3 fixes five of the issues. 谷歌通过其…

Ubuntu 16.04使用timedatectl进行管理时间(UTC/CST)(服务器/桌面)

说明:16.04开始,systemd接管了系统之后就不再使用/etc/default/rcS和ntpdate、dpkg-reconfigure tzdata进行时间的管理,所以在这些地方设置是无效的,标准的写法是使用timedatectl进行管理。且经过测试hwclock操作硬件BIOS&#xf…

让你的div可拖动(手机端)

电脑端引入 jQuery UI 可以实现。而手机并没有 mousemove 等事件,所以这里采用手机事件:touchstart 和 touchmove 实现拖拽。 一、引入: 只要引入 jQuery.js 和 dragger.js(如下)即可 注:实现拖拽部分转…

5-4 全局变量

1、函数内部使用全局变量时,需要申明global 1 name 小明 # 定义一个全局变量name,并给它赋值小明2 stus [] # 定义一个空list3 # list、字典、集合4 5 def a():6 # 字符串、int、float、元组 需要声明global7 global name # 函数内部使用局部变量时&a…

黑客攻防:从入门到入狱_每日新闻摘要:游戏服务黑客被判入狱27个月

黑客攻防:从入门到入狱On Christmas day, 2013, many delighted people opened up new Xbox and Playstation gifts. That excitement turned to disappointment when they were unable to log onto game services and play. Now the hacker responsible will spend 27 months …

Self Introduction

名流时尚服饰 dior 夏季 男装 男士t恤衬衫卫衣休闲裤牛仔裤英伦 socool 搜酷女包◆任选两款正价包包邮◆5周年店庆◆5折疯抢 紫紫 超人气包邮特价创意家居收纳压缩袋饰品服饰配件包包 socool 搜酷女包◆任选两款正价包包邮◆5周年店庆◆5折疯抢 dior 风格 CF Homme 男装 男士t恤…