组织电子表格的表格公式
我有一个如下表:
| Xn | S | Pn |
| 0 | 0 | 0 |
| 1 | 0 | 1 |
| 0 | 1 | 0 |
| 1 | 1 | 0 |
我想搜索 Xn
和 S
列,并返回 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 org-babel:命名表并将其用作函数的输入,该函数以您选择的语言(在 org 支持的多种语言中)进行搜索。
在伪代码中:
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: