SELECT RawMaterrialsInventory.RowMaterrialsInventoryID, RawMaterrialsInventory.RowMaterialID, RawMaterrialsInventory.TransactionType, RawMaterrialsInventory.Inventory_Quantity_Raw_Materrial, RawMaterrialsInventory.TransactionDate, RawMaterrialsInventory.StoresTransactionID, RawMaterrialsInventory.[PO#], RawMaterrialsInventory.ExpirationDate, [RawMaterials].[RawMaterials] & " " & [SupplierName] & " " & [ExpirationDate] AS RowMaterialCode, Suppliers.SupplierName, Clients.ClientName, RawMaterrialsInventory.OCode
FROM ((RawMaterrialsInventory LEFT JOIN RawMaterials ON RawMaterrialsInventory.RowMaterialID = RawMaterials.RowMaterialID) LEFT JOIN Suppliers ON RawMaterrialsInventory.SupplierID = Suppliers.SupplierID) LEFT JOIN Clients ON RawMaterrialsInventory.ClientID = Clients.ClientID;