简体   繁体   English

如何获取“最多”一周的当前日期显示的Excel图形

[英]How to get an Excel graph show “up to” current day of week

In Mac Excel 2011 I have a Scrum burndown chart that tracks the number of points 'burnt' per day (starting from say 100, hopefully burning down to 0). 在Mac Excel 2011中,我有一个Scrum燃尽图,该图表跟踪每天“燃尽”的点数(从100开始,希望减为0)。 The number of points per day is made up of a sum of X number of columns (tasks). 每天的点数由X列数(任务)的总和组成。 I then have a marked line graph which takes it's Y value data from the summed points per day. 然后,我有一个标记的折线图,它从每天的总点中获取Y值数据。

My issue is that the marked line graph will always display 5 work days worth of burn, even though we might be on Tuesday. 我的问题是,即使我们可能在星期二,标记的折线图仍将始终显示5个工作日的消耗量。

I need a solution that means I don't have to manually update the graph y value each day (adding it), instead the graph knows it is Wednesday, and selects data up to Wednesday. 我需要一个解决方案,这意味着我不必每天手动更新图y值(添加),而是该图知道它是星期三,并选择直到星期三的数据。

Do you want to show the days for the whole week? 您要显示整周的日子吗? (probably, since a 1 or 2 day chart early in the week will look funny.) Are the Y values linked from another cell? (可能是因为一周初的1或2天图表看起来很有趣。)Y值是否与另一个单元格链接?

If so, change your links from 如果是这样,请更改您的链接

=A1

to

=IF(LEN(A1)=0,NA(),A1)

NA() produces #N/A in the cell, which isn't plotted. NA()在单元格中产生#N / A,未绘制。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Excel-如何获取日期是否为星期几? - Excel - how to get if a date is a specific day of the week? 如何通过传递当天的日期来获取星期几(星期一)的日期? - How to get the date for the start of the week (Monday) by passing in the current day? Excel VBA-是否可以仅指定日期名称来获取当前星期的日期? - Excel VBA - Is there a way to get the date in the current week, given only the day name? Excel - 将周日开始日期作为公式 - Excel - Get Week Day Start Date as formula 无论日历周数如何,如何获取一天的周数? - How to get the week number for day irrespective of the calender week number? Excel - 如何将年、周数和星期几的组合转换为日历日? - Excel - How to convert the combination of year, week number and day of week to calendar day? 如何过滤日期列以仅显示一个月的最后一周 - How to Filter a date column to show the last week day of a month only Excel - 如何将星期几 - 星期一 - 日 - UTC - 年转换为 excel 中的可识别日期 - Excel - How to convert Day of Week - Mon - Day - UTC - Year to recognizable date in excel 如何计算 EXCEL 中的年份、星期几和星期几的日期? - how to calculate the date from the year, week-of-year and day-of-week in EXCEL? 当前周的Excel sumifs条目 - Excel sumifs entries in current week
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM