Hi,
I need help translating this bit of code into a IF function:
int time=1034;
int test=2000;
int count=0;
string conf=“A change has happened”;
if(time!=test) {
count++;
test=time;
cout << conf;
}
so basically what I would like to do is to change values of multiple cells depending on a result of the IF function.
Something like this: IF(NOT(A1=B1),{C1=C1+1;A1=B1;D1=“A change has happened”})
Thanks everybody for your help.