Hi,
I am using the following in order to obtain the rate from sales invoice in descending order
in Sisub.Ratemin it has four digits, but it is rounding to 2 decimal places.
What wrong with this? Please guide.
Thanks
Saif
I am using the following in order to obtain the rate from sales invoice in descending order
Code:
SELECT DISTINCT Simain.pcode, Sisub.icode, Sisub.ratemin;
FROM ;
village!simain ;
INNER JOIN village!sisub ;
ON Simain.sino = Sisub.sino;
WHERE simain.invdate > {31/12/2015} ;
INTO CURSOR SiJunk READWRITE NOFILTER
INDEX on pcode+icode TAG pcic DESCENDING
in Sisub.Ratemin it has four digits, but it is rounding to 2 decimal places.
What wrong with this? Please guide.
Thanks
Saif