G
Guest
How do I transfer the result of my query in field Principal1 to continue the
calculation from the Principal + Interest of the previous month and having it
compounded from a month to the second month?
SELECT DISTINCT Right([DB_FROM],7) AS DB_YEARMONTH,
[Forms]![Interest_Christine]![Principal] AS Principal1,
Sum((([db_prime]/100)/365*[No_of_Days]*[Principal1])) AS Principal_Int
FROM [INTEREST TEMP]
GROUP BY Right([DB_FROM],7), [Forms]![Interest_Christine]![Principal]
ORDER BY Right([DB_FROM],7);
calculation from the Principal + Interest of the previous month and having it
compounded from a month to the second month?
SELECT DISTINCT Right([DB_FROM],7) AS DB_YEARMONTH,
[Forms]![Interest_Christine]![Principal] AS Principal1,
Sum((([db_prime]/100)/365*[No_of_Days]*[Principal1])) AS Principal_Int
FROM [INTEREST TEMP]
GROUP BY Right([DB_FROM],7), [Forms]![Interest_Christine]![Principal]
ORDER BY Right([DB_FROM],7);