I have calculated field that divides two fields from a table, but when the query is running, the query only calculates the first row of the calculated field and not all rows.
I am using a simple calculation in my calculated field, so I am not sure why this is happening.
My entire expression:
SELECT LlamadoDeCapital.ID, LlamadoDeCapital.TotalCapitalCommitted, LlamadoDeCapital.CapitalCallRequestDate, LlamadoDeCapital.CapitalCallDate, LlamadoDeCapital.CurrentCapitalCall, DSum("CurrentCapitalCall","LlamadoDeCapital","CapitalCallDate <=" & CLng([CapitalCallDate])) AS TotalCapitalCalls, [CurrentCapitalCall]/[TotalCapitalCommitted] AS [%CurrentCuotaPaid]
FROM LlamadoDeCapital;
Sample that only calculates one cell:
[CurrentCapitalCall]/[TotalCapitalCommitted] AS [%CurrentCuotaPaid]
I'm sure I am probably missing something simple. I appreciate any help or suggestions you can offer.