My Query Result is as below
Query:
SELECT reservations.customerid,
(SELECT SUM(balances.balance) FROM balances
WHERE balances.customer_id = reservations.customerid)
AS Preveious_balance ,
(SELECT SUM(services.Amount_due)
FROM services
WHERE services.customer_id = reservations.customerid
AND services.status=0) AS Service_due ,
(SELECT SUM(foods.Amount_due)
FROM foods WHERE foods.customer_id = reservations.customerid
AND foods.status=0) AS Food_due,
((due_nights.Due_nights - reservations.billed_nights) * rooms.rate)
as Accomendation,
(Preveious_balance + Service_due + Food_due + Accomendation)
AS Total_due
FROM reservations, due_nights, rooms
WHERE reservations.customerid = due_nights.customerid
AND reservations.roomno = rooms.roomno
Total_due is Empty if some other columns value gets empty so how to fix this ?
You can you
NZ function of Access
to check whether the sum is null.If so assign 0. It will solve your issueIf not access