-
Eike Rathke yazdı
So we now have =IF({1,0},TRUE(),42) => {TRUE,42} =IF({0,1},TRUE(),42) => {42,1} =IF({1,0},42,FALSE()) => {42,0} =IF({0,1},42,FALSE()) => {FALSE,42} instead of before =IF({1,0},TRUE(),42) => {TRUE,TRUE} =IF({0,1},TRUE(),42) => {TRUE,TRUE} =IF({1,0},42,FALSE()) => {TRUE,FALSE} =IF({0,1},42,FALSE()) => {FALSE,TRUE} Not perfect but better.. Change-Id: Ib4970f3c4c1bea87130730b956a0a6754879c6e6
fd8c8025