是否有一个函数可以在另一个单元格连接到另一个单元格的纸板中制造一个单元格,但具有相同的信息,但单元格位置不同

发布于 2025-02-13 23:08:48 字数 252 浏览 2 评论 0原文

正确解释。可以说,您有“员工”表,共有50名员工。在第18行,单元A,您有Dave。 在同一张纸上,您有一个复选框,一旦按下,它将模糊戴夫的名字,以表明他离开了公司。

您还有另一个名为“活动”的表格,在那里您也有员工,但是Dave上的Dave在第42行,Cell A.

可以说, 按下复选框,戴夫(Dave)和唯一的戴夫(Dave)会在“员工”表的第18行,以及“活动”表的第42行上都会被模糊,而无需专门针对这些单元格的公式?

To explain properly. Lets say that you have Sheet "Employees", with 50 employees total. On row 18, cell A, you have Dave.
On the same sheet, you have a checkbox that once pressed will blur out Dave's name to show that he left the company.

Lets say that you have another sheet named "Activity", and there you also have the employees, but Dave on that sheet is on Row 42, Cell A.

Is there a way for me, that once i press the check box, Dave and ONLY Dave will get blurred out, both on Row 18 of the "Employees" Sheet, and on Row 42 of the " Activity" sheet without needing to a formula those cells specifically?

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

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

发布评论

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

评论(1

Saygoodbye 2025-02-20 23:08:48

解决方案的方法有多种方法...例如,有条件格式:

=REGEXMATCH(D2, TEXTJOIN("|", 1, 
 FILTER(INDIRECT("Employees!A:A"), INDIRECT("Employees!B:B")=TRUE)))

”在此处输入图像说明”

there are various ways how to tackle it... for example with conditional formatting:

=REGEXMATCH(D2, TEXTJOIN("|", 1, 
 FILTER(INDIRECT("Employees!A:A"), INDIRECT("Employees!B:B")=TRUE)))

enter image description here

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