Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

Add percentage in result

Topic Labels: Automations
Solved
Jump to Solution
1287 2
cancel
Showing results for 
Search instead for 
Did you mean: 
MattJD
5 - Automation Enthusiast
5 - Automation Enthusiast

Hi, can you help me? I need to sum 16% if the field “Incluir IVA” contains 16%, if it doesn’t, just do the first arithmetic operation. Thank you

Screenshot_1

1 Solution

Accepted Solutions
TheTimeSavingCo
18 - Pluto
18 - Pluto

Hi Matt, not sure I follow but try this:

IF(
  {INCLUIR IVA} = 0.16,
  {TOTAL BS.} * 1.16,
  {TOTAL BS.}
)

Should work, but lemme know if there’re any errors

See Solution in Thread

2 Replies 2
TheTimeSavingCo
18 - Pluto
18 - Pluto

Hi Matt, not sure I follow but try this:

IF(
  {INCLUIR IVA} = 0.16,
  {TOTAL BS.} * 1.16,
  {TOTAL BS.}
)

Should work, but lemme know if there’re any errors

Thanks, Excelent @Adam_TheTimeSavingCo :clap: