Válido si no todos los registros son cero

Hello! Greetings from Argentina.

I want to ask if you have ever had this problem:

I have 5 fields

4 fields of them are handwritten data, the fifth field is calculated.

[Data 1] = handwritten value
[Data 2] = handwritten value
[Data 3] = handwritten value
[Data 4] = handwritten value
[Data 5] = calculated value

I need that, while I am loading the data in the 4 fields, it is impossible to leave the 4 values ​​at 0 (that, at least, there is a non-zero value).

At first I thought of a valid yes, but with what formula?

I appreciate if you know any answer

Solved Solved
0 6 73
1 ACCEPTED SOLUTION

More simple ?
[Dato1]+[Dato2]+[Dato3]+[Dato4]>0

View solution in original post

6 REPLIES 6

Aurelien
Google Developer Expert
Google Developer Expert

Hi @Gustavo_Eduardo_Lazc

Maybe this, in the Valid_If expression of each column ?

  [_THIS]>0

Plus: Required ==> ticked ON

EDIT: expression correction.

Hola Gustavo.
Creo que nos falta información para ayudarte.
Qué tipo de columna son las 4 que necesitas que se puedan editar pero, hasta donde entendí, no puedan ser 0.
Si lo explicas en un poco más de detalle, te podría ayudar.
Como dice @Aurelien, una expressión en Valid_If es la solución que buscas

Hola Oscar! te comento, pude solucionarlo. Te expongo la solución.

Creé un valid_if que verifica que:

Sum(
list(
[Dato1],[Dato2],[Dato3],[Dato4]
)
)>0

Entonces, recorre los campos y no permite que ingrese valores iguales a cero, a menos que alguno de ellos sea distinto de cero.

More simple ?
[Dato1]+[Dato2]+[Dato3]+[Dato4]>0

Comprendo.
Necesitas que la suma de todos no sea cero? Es decir, que a lo menos uno de los 4 sea mayor a cero?

Así es Oscar!

Top Labels in this Space