Hola @ute !!
Vamos a suponer que has almacenado el valor de tu campo en una variable que llamaremos KmRealesCambioGomas de tipo entero (int). En ese caso la expresión que buscas podría ser de este tipo /
Lets assume you stored the value of the field in a Power Automate variable called KmRealesCambioGomas of type int. I guess the following expression can do the magic:
if(equals(variables('KmRealesCambioGomas'),0),'texto1','texto 2')
Ahora supongamos que también has almacenado tu segundo campo en una variable que llamaremos KmRealesCambioNafta de tipo entero (int). LA expresión que incluye una doble condición anidada sería /
Now let's assume you stored the value of the second field in a Power Automate variable called KmRealesCambioNafta of type int. I guess the following expression that is handling nested conditions can do the magic:
if(equals(variables('KmRealesCambioGomas'),0),'texto1',if(less(variables('KmRealesCambioGomas'),variables('KmRealesCargaNafta)),'texto 2','texto 3'))
Para construir un texto combinando expresiones WDL y caracteres, te recomiendo la función concat() / Finally, in order to build a string by combining characters and WDL expressions, my suggestion is to use concat() function:
concat('REvisa en un taller las gomas de tu carro antes de ',addDays(utcNow(),2),' por tu seguridad')
Más sobre funciones WDL aquí / More on WDL functions here:
Reference guide for functions in expressions - Azure Logic Apps | Microsoft Docs
¡Ánimo!