Aug 20, 2017 08:47 PM
I need to calculate summary weighted averages - for example the weighted average interest rate for a number of loans that are records in a loan table. The summary bar is very limited and you cannot create any calculated fields there that I can see.
e.g. Loan Amt Rate
$100 5%
$150 3%
$600 9%
The weighted average interest rate is:
( (100*.05) + (150*.03) + (600*.09) ) / (100 + 150 + 600) = .07 = 7%
Any ideas as to how i can do this?
Oct 23, 2017 12:30 AM
I also need this for my cryptocurrency portfolio tracking!
I have # of coins and price, so I would love to know after multiple deals that’s the average price I bould them. Therefore I need weighted averages, where prices are weighted by amount of coins.
Have you already made feature request?
It’s a function over two columns. The only elegant way I see it they implement it that in colum sum function dropdown we could select this instead of current (SUM, AVG), then dialog pops up and we select which column is reponsible for weight!
Oct 24, 2017 02:32 PM
Can you show us a public view of the loan table? Or an example?
I need to understand how the data works - are these loans the same (like a list of offerings) or are these new loans being entered and tracked that vary (like loans by customer, etc.)?
The steps of your calculation will need to be broken down and done in new fields/columns first, then all loan records will likely need to be linked to another table (to pull all loan data), and finally the averaging equations can be done.
Note that without seeing how the base works this is hypothetical for now :slightly_smiling_face: .