如何从Excel表生成一个(布尔)公式?

huangapple go评论79阅读模式
英文:

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)))

如何从Excel表生成一个(布尔)公式?

答案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.

huangapple
  • 本文由 发表于 2023年6月15日 20:29:32
  • 转载请务必保留本文链接:https://go.coder-hub.com/76482488.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定