How about something like this...
SELECT Date, AmountB/F, Repayments, InterestCharged, AmountC/F
FROM table1
INNER JOIN table2 ON table1.Date = table2.Date
INNER JOIN table3 ON table2.Date = table3.Date
Not sure what your table names were, so I used table1, table2 and table3