How do I change cell values in a range with a "Yes" formula

1

I want to change the 'values' cells I13 to K13 , that is I13 J13 K13 by means of the formula "Yes" when the value is true.

    
asked by Calicol 24.11.2016 в 04:18
source

2 answers

1

To change the values of contiguous cells with a single formula, use matrix formula.

For example, to compare the values of F3, G3 and H3 with 1. If they are equal, return a 1 in cell I3, J3 and K3 as appropriate, do the following:

  • Select I3: K3
  • Write = IF (F3: H3 = 1,1,0) and press CTRL + SHIFT + Enter
  • References

    answered by 05.04.2017 в 00:33
    0

    To change the values of these cells you have to compare it with another cell.

    For example, imagine that in cell A1 you have the value 1, cell B1 will be true or false if A1 is 1.

    =SI(A1=1;VERDADERO;FALSO)
    

    B1 will return VERDADERO , if the function is placed in cell B1

    You should indicate what you are going to evaluate. Remember the function SI (IF) needs to evaluate an input parameter to return a boolean. You can return what you need (text, number, boolean, etc.)

    =SI(CELDA A COMPARAR; VERDADERO; FALSO)
    

    In programming it's the same,

    Si (parametro es verdadero) entonces
    
    #código
    
    sino
    
    #código
    
    Fin
    
        
    answered by 24.11.2016 в 11:32