Hi, I have three queries coming from the same table
SELECT "ID", "Date", "Dévise" AS "EUR", "Net", "ExchangeR", "Net" * "ExchangeR" AS "EUR Solde" FROM "Paypal" WHERE "Dévise" = 'EUR'
This one is for Euros the others are for GBP and USD. from each there is another query which gives me the SUM at a specified date
SELECT SUM( "EUR Solde" ) FROM "soldeEUR" WHERE "Date" <= :INPUTDATE
all work great, I now wish somehow to combine the three so that I add the date only once and I can SUM the three totals.
I have tried to use one query but this does not work, I would like to use a form if possible, I have tried this but I have to add the date three times and I dont know then how to sum the replies, I have saved each query as a table in view section
Any suggestions welcome
Regards
Paul
Here is a screen shot of the query by @ratslinger
The answers should be (EUR Solde) -66.44, (GBP Solde) 6561.77 & (USD Solde) 68.84