Johan
Yes I wish I would know a bit more about the Management Studio, because right now I have to write a Report, showing me, what was sold last month, ItemCode, Describtion, Quantity, and the price per Unit... We already have a Query, but that one was made by B1, its to big and is without the price, so If u dont mind, could u have a look at the one i just wrote!? It throws errors and I cant execute it. I hope Im not bothering u to much, but im the only one in the office, writting querys and I definetly need clases in the Management Studio and SQL Language...
Thanx, Florian
SELECT T0.[DocDate],
T2.ItemCode [Cod.Articulo],
T2.Dscription[Descripcion],
T2.Quantity [Cantidad]
FROM OINV T0 INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry, ITM1 T2 WHERE T0.DocDate BETWEEN [%0] AND [%1]
AND T2.[Price] = 2