Skip to main content
Answer

Add percentage in result

  • November 9, 2022
  • 2 replies
  • 23 views

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

Best answer by TheTimeSavingCo

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

2 replies

TheTimeSavingCo
Forum|alt.badge.img+31

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


  • Author
  • New Participant
  • November 10, 2022

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: