Alguien que me pueda indicar como puedo sumar n cantidad de campos con un workflow, ya que con la formula que viene en el manual solo me suma 2 números. Adjunto como tengo la formula.
Listo. Yo tenia mal estructurada la formula, se las comparto por si alguien la llega a necesitar, solo ajustenla de acuerdo a los campos que se necesiten.
Under add Workflow Action select New field update.
Select the field you want to update for ex: sales tax
click use formula to set new value, In the formula editor you can use this formula
IF( ISPICKVAL(Item, veg) , 2%, IF( ISPICKVAL(Item, nonveg) , 12%, IF( ISPICKVAL(Item, sweet) , 0, 0) ) )
Click save and New
Then again select field you want to update for ex: service tax
click use formula to set new value, In the formula editor you can use this formula
IF( ISPICKVAL(Item, veg) , 5%, IF( ISPICKVAL(Item, nonveg) , 20%, IF( ISPICKVAL(Item, sweet) , 0, 0) ) )
Click save and New
Then again select field you want to update for ex: other tax
click use formula to set new value, In the formula editor you can use this formula
IF( ISPICKVAL(Item, veg) , 1%, IF( ISPICKVAL(Item, nonveg) , 5%, IF( ISPICKVAL(Item, sweet) , 0, 0) ) )
Click save
This will work for sure!