在 Excel 图表中,让四个系列中的一个限制数据点
我想使用 VBA 在 Excel 中绘制折线图,但无法正确设置以下格式以使其看起来像 Excel 工作表。数字代表二月到六月的值。 7 月和 7 月尚无数值。八月。
"Feb" "Mar" "Apr" "May" "June "July" "Aug" Obs to Go / 112 / 108 / 104 / 99 / 94 / Plan Reserve / 23 / 22 / 21 / 20 / 19 / Actual Reserve / 29 / 30 / 31 / 37 / 37 / Reserve Value / 13 / 15 / 16 / 17 / 18 /
我想在线图上绘制所有 4 个项目 - 布局 5(Ob's to go、计划储备、实际储备余额、储备 $ 上方/下方)。但在“实际储备”上,我希望它只获取最近两个月的数据,并且只将这两个点绘制在折线图上,其他折线图绘制从 2 月到 6 月的数据。
我怎样才能自动让Excel每月仅获取最近2个月的“实际准备金余额”,并删除较早月份的数据,同时仍显示自启动以来的其他数据(从2月开始到最近一个月)。每个月我都会填充当月的数据,即 7 月、8 月、9 月等,但希望图表仅绘制“实际储备”线的最近 2 个月。
I want to plot on a line graph in Excel using VBA, but can't get the below to format correctly to look like an Excel worksheet. Numbers represent values for Feb through June. No values yet in months July & Aug.
"Feb" "Mar" "Apr" "May" "June "July" "Aug" Obs to Go / 112 / 108 / 104 / 99 / 94 / Plan Reserve / 23 / 22 / 21 / 20 / 19 / Actual Reserve / 29 / 30 / 31 / 37 / 37 / Reserve Value / 13 / 15 / 16 / 17 / 18 /
I want to plot all 4 items on line graphs-Layout 5 (Ob's to go, Plan Reserve, Actual Reserve Balance, Reserve $ Above/Below). But on "Actual Reserve" I want it to only take the last two most recent months of data and only plot those 2 points on a line graph, with the others line graphs plotting data from Feb through June.
How can I automatically get excel to pick up only the last 2 most recent months for "Actual Reserve Balance" each month and drop off the older months of data while still showing the others since inception (beginning with Feb to most current month). Each month I will populate the data for the current month i.e. July, Aug, Sept etc. but will want the graph to only plot the most 2 current months for "Actual Reserve" line.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法使用类型 5 xlLineMarkersStacked 执行此操作。即使您将 DisplayBlanksAs 设置为 xlNotPlotted,它也会显示其他点。
You can't do this with type 5, xlLineMarkersStacked. It will display the other points, even if you set DisplayBlanksAs to xlNotPlotted.