hi, I made an app bills, I have this problem.
I created two fields in the database and VAT payable with decimal 10.2 - these are my formulas:
//(prezzo tot
{Totale} = {prezzo1}+{prezzo2}+{prezzo3}+{prezzo4}+{prezzo5};
//imponibile
{imponibile} ={totale} /1.22 ;
//iva
{iva}= {totale} - {imponibile};
{Totale_complessivo} = {iva} + {imponibile};
in this example if have total 25,00 - my {imponibile} 20,49 ( the tax is calculated at 22%)
{iva} 4,50, but this have issue the right value is 4,51
can i solve this? Thanks!!!