Hi everyone, I have a saved search with a Forumla ...
# administration
a
Hi everyone, I have a saved search with a Forumla (Text) field with th evalue below. The pricelevel is 2.50 but on the Results this shows 2.5 - I lose the second decimal. This doesnt seem to happen if the price is 2.99 - any ideas? thanks
Copy code
case when {salestaxcode}='S-GB' then ROUND(({onlineprice}*1.2),2) else {onlineprice} end || ' GBP'
p
case when {salestaxcode}='S-GB' then TO_CHAR(ROUND(({onlineprice}*1.2),2),'999999999.99') else {onlineprice} end || ' GBP'
Try that
a
@PNJ Thanks, but I get Invalid Expression
TO_CHAR(ROUND(({onlineprice}*1.2),2),'999999999.99') that worked, so must be formula issue...