组织电子表格的表格公式

发布于 2025-01-02 14:46:20 字数 248 浏览 0 评论 0原文

我有一个如下表:

| Xn | S | Pn |
| 0  | 0 | 0  |
| 1  | 0 | 1  |
| 0  | 1 | 0  |
| 1  | 1 | 0  |

我想搜索 XnS 列,并返回 Pn 的值,其中 Xn =1 和 S=0

任何人都可以建议我如何去做这件事吗?

I have a table as follow:

| Xn | S | Pn |
| 0  | 0 | 0  |
| 1  | 0 | 1  |
| 0  | 1 | 0  |
| 1  | 1 | 0  |

I would like to search through columns Xn and S and return the value of Pn for which Xn=1 and S=0.

Can anyone advise on how I could go about doing this?

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

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

发布评论

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

评论(2

千秋岁 2025-01-09 14:46:20
#+tblname: example-table
| Xn | S | Pn |
|  0 | 0 |  0 |
|  1 | 0 |  1 |
|  0 | 1 |  0 |
|  1 | 1 |  0 |

#+source: compute-table
#+begin_src emacs-lisp :var table=example-table
(require 'cl)
(loop for (xn s pn) in (rest table)
      when (and (= xn 1) (= s 0)) collect pn)
#+end_src

#+results: compute-table
| 1 |
#+tblname: example-table
| Xn | S | Pn |
|  0 | 0 |  0 |
|  1 | 0 |  1 |
|  0 | 1 |  0 |
|  1 | 1 |  0 |

#+source: compute-table
#+begin_src emacs-lisp :var table=example-table
(require 'cl)
(loop for (xn s pn) in (rest table)
      when (and (= xn 1) (= s 0)) collect pn)
#+end_src

#+results: compute-table
| 1 |
盛夏尉蓝 2025-01-09 14:46:20

使用 org-babel:命名表并将其用作函数的输入,该函数以您选择的语言(在 org 支持的多种语言中)进行搜索。

在伪代码中:

#+tblname: my_table
|Xn|S|Pn|
| 0|0|9 |
[...]

#+name filter_table
#+begin_src lang :var tbl=my_table :results output
  filter tbl # tbl (my_table by default) is passed in as array of arrays (or list of lists)
  print matching Pn
#+end_src

Use org-babel: Name the table and use it as input for a function that does the search in a language of your choice (out of the many languages supported by org).

In pseudo code:

#+tblname: my_table
|Xn|S|Pn|
| 0|0|9 |
[...]

#+name filter_table
#+begin_src lang :var tbl=my_table :results output
  filter tbl # tbl (my_table by default) is passed in as array of arrays (or list of lists)
  print matching Pn
#+end_src
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文