Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
IIf([AdjInd]=2,-[ExVat],[ExVat])
would be replaced with something like
CASE WHEN [AdjInd]=2 THEN -[ExVat] ELSE [ExVat] END
or
CASE [AdjInd] WHEN 2 THEN -[ExVat] ELSE [ExVat] END