根据从 1 月到年初至今 (YTD) 和年初至今 (YTD) 结束的日期列中的值,创建具有动态范围的折线图。能够选择显示哪些客户端
在这个问题上我一直用头撞键盘。 我正在尝试根据以下数据创建动态线图,如果可能的话,我想避免使用 VBA:
“标题”列是要显示的客户端,日期值组成这些行。可能有 3 个客户端,也可能有 12 个。具体情况各不相同。从标题行向下 30 行一直到从原始数据列表中提取的“26-Dec”都有公式,因此 TMKOMS 下面的那些空白行实际上包含公式。
我想要一个仅包含“标题”列中可见的客户端的动态范围。 在折线图上,我想要一种能够选择要显示的客户端的方法(即下拉框、复选框或其他东西)。
我还需要日期范围的值来动态捕获“1 月 3 日”到今年至今的日期(例如“3 月 21 日”),以便折线图最多只显示 3 月 21 日。如果有一种方法可以让用户从下拉列表中选择任何一个日期,那就太好了,但如果下拉列表为空,动态范围将自动恢复为年初至今。
任何帮助将不胜感激。
Been banging my head against the keyboard on this one.
I'm trying to create a dynamic Line Graph based on the below data and I'd like to avoid using VBA, if possible:
The "Title" column is the clients to display and the Date values make up the lines. There could be 3 clients or there could be 12. It varies. There are formulas going 30 rows down from the title row all the way through to "26-Dec" pulling from a raw data list, so those blank rows below TMKOMS actually have formulas in them.
I want a dynamic range that includes only the clients that are visible in the Title column.
On the Line Graph, I want a way to be able to select which client(s) to display (ie. drop-down boxes, check boxes or something).
I also need the Date range of values to dynamically capture "3-Jan" up to the year-to-date (eg. "21-Mar"), so that the Line Graph will only display up to 21-Mar. It would also be nice to have a way for users to select any one of the dates from a drop-down, but if the drop-down is blank, the dynamic range reverts to the year-to-date automatically.
Any help would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终通过分解并使用 VBA 设置自动过滤器解决了所有这些问题。
I ended up solving all this by breaking down and using VBA to set autofilters.