Forum Discussion
Ghada Saleh
Oct 23, 2017Copper Contributor
Formula to read value rather than the formula in the cell
Trying to form a formula that picks up data from other cells. The values in the other cells are from formulas. eg AA1: formula =if(B1=C1,"ok","check"), My formula in another cell is supposed to ...
SergeiBaklan
Oct 23, 2017Diamond Contributor
Hi Ghada,
You formula first checks if AA1 is equal to BB1 and returns TRUE or FALSE (1 or 0) and after that compare with "ok". That is always FALSE, thus the result is always "check"
=IF(AND(AA1="ok",BB1="ok"),"ok","check")
- Ghada SalehOct 24, 2017Copper Contributor
Many thanks. It worked :)