I thought this would be easier but I'm trying to obtain a total of all fuel issued and fuel received by airline between any two dates.
Can anyone help?
	
	
	
		
 Can anyone help?
		SQL:
	
	
	SELECT tblTransactions.TransactionID, tblTransactions.TransactionDate, tblTransactions.AirlineCompanyLookup, tblTransactions.GallonsIssued, tblTransactions.GallonsReceived
FROM tblTransactions; 
	 
 
		 
 
		 
 
		