我在google工作表中编写了以下功能,以便添加" ID"到专栏:
=if(and(E2>43%, E2<57%, C2=2016), "ID", " ")
我想为此添加另一个逻辑运算符OR。我想添加&#34; ID&#34;如果满足以下条件,或者如果满足上述条件:
E2 >57%, C2=2016, J2=""
列J中写有名称。我试图用J2 =&#34;&#34;是空间不是空白。我不在乎这个名字是什么,只是写了文字。我写了这个,但它不起作用:
=if(or(and(E2>43%, E2<57%, C2=2016),AND(E2>57%, C2=2016, J2=""), "ID", " "))
感谢您的帮助!
答案 0 :(得分:1)
试试这个:
public static ResteasyClient getRestClient() {
if (null == client) {
client = new ResteasyClientBuilder().build();
}
return client;
}