Excel 中的图片自动化

发布于 2024-11-17 22:59:02 字数 215 浏览 1 评论 0原文

我有 2 张 Excel 表格。在第一张纸中,我制作了 3 张图片(椭圆形或方形),并将它们重命名为 A、B、C,并将不同的 A、B、C 列放入不同的单元格中。并使其在验证中列出。 在第二张纸中,我对第一张纸 A、B、C 使用验证选项。 现在我想如果我选择一张图片,其显示名称应与 A 相同,就像 B 和 C 一样。 这是怎么发生的,我真的不知道请帮助我,因为我只知道 Excel 的基本知识。 [电子邮件被剪断]。

I have 2 sheets in excel. in 1st sheet I make 3 pictures i.e (Oval or square ) and rename those with A, B, C and also put in different colum A, B, C in different cell. and make it list in validation.
in 2nd sheet I use validation option for 1st sheet A, B, C.
Now I want if i select A picture should be display name as A same like for B and C.
how it will be happen, really i don't know please help me because I knew just basic of Excel. [EMAIL SNIPPED].

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

江心雾 2024-11-24 22:59:02

如果我理解正确,这可以为您提供您想要的:

转到“工具”>“宏”>“宏”并创建一个名为 ClickA 的宏,然后将宏代码更改为:

Sub ClickA()
    Sheets("Sheet2").Range("A1").Formula = "A"
End Sub
Sub ClickB()
    Sheets("Sheet2").Range("A1").Formula = "B"
End Sub
Sub ClickC()
    Sheets("Sheet2").Range("A1").Formula = "C"
End Sub

现在关闭宏编辑器,右键单击您拥有的每个椭圆形或正方形并为其分配相应的宏。
祝你好运!

If I understand correctly this can give you what you want:

Go to Tools>Macro>Macros and create a macro named ClickA, then change the macro code to this:

Sub ClickA()
    Sheets("Sheet2").Range("A1").Formula = "A"
End Sub
Sub ClickB()
    Sheets("Sheet2").Range("A1").Formula = "B"
End Sub
Sub ClickC()
    Sheets("Sheet2").Range("A1").Formula = "C"
End Sub

Now close the macro editor, rightclick each of the ovals or squares that you had and assign the corresponding macros to them.
Good luck!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文