英文:
How to generate a (boolean) formula from an Excel table?
问题
以下是翻译好的部分:
作为示例,我们有下面的表格。
condition_A | condition_b | condition_c | result |
---|---|---|---|
false | false | false | true |
false | false | true | true |
false | true | false | true |
false | true | true | true |
true | false | false | false |
true | false | true | false |
true | true | false | true |
true | true | true | false |
Excel能够根据其他相应列的值生成关于每行的result
条目的布尔公式吗?
例如,公式是
result = !condition_A OR (sth_else)
英文:
As an example we have the table below.
condition_A | condition_b | condition_c | result |
---|---|---|---|
false | false | false | true |
false | false | true | true |
false | true | false | true |
false | true | true | true |
true | false | false | false |
true | false | true | false |
true | true | false | true |
true | true | true | false |
Can excel generate a boolean formula on what result
entry is per row, taking into account the values of the other corresponding columns?
eg. the formula is
result = !condition_A OR (sth_else)
答案1
得分: 1
使用逻辑公式。关于(sth_else)
的逻辑不明确,但可以猜测:
=OR(NOT(A2),AND(B2,NOT(C2)))
英文:
Using logical formulas. Your logic on (sth_else)
is unclear, but a guess:
=OR(NOT(A2),AND(B2,NOT(C2)))
答案2
得分: 1
我找到了我的查询答案。一个可以做到这一点的免费软件叫做“Logic Friday”,它可以从真值表生成甚至简化布尔表达式。
英文:
I found the answer to my query. A piece of free software that can do this is called "Logic Friday", it can generate and even simplify boolean expressions from truth tables.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论