Using @IF command in Lotus 1-2-3

Asked By 400 points N/A Posted on -
qa-featured

Here is my question in which your advices are needed regarding Lotus 1-2-3: Can I use the “@IF” command to determine a cell background color? Example: using “@IF(A1<16,B2,B3)” , could the B2 background be red if statement is true and grey if false? For me this is very challenging as the object cells will change accordingly.

SHARE
Answered By 55 points N/A #113700

Using @IF command in Lotus 1-2-3

qa-featured

Hmm I don't know specifically that either you can do this or not but I have a better solution for this.

Whatever the condition is in @IF(A1<16,B2,B3) simply write a code inside that @IF block that would change the color to red and same block in the false for the grey color.

@IF(A1<16,B2,B3)
{
     color = "red"
}else{
             color="grey"
}

Write any number of statements that you want inside these blocks that would determine or use the colors that you are assigning to the blocks. There is no restriction in changing the color of the blocks from inside the loops.

blocks from inside the loops.

However you can also give it a try to the approach that you are using. But I am not sure if it works correctly or not.

Related Questions