Need to be able to calculate the total of column data in order to be used in reporting metrics

For the following table of records, I need to be able to calculate the total of the highlighted columns, (Bid Amount & Principle Balance) so that I can utilize that information to create a list of metrics listed below the Picture.

  • Balance Underwritten
    • Sum of Principle Balance
  • Balance Bid
    • Sum of Principal Balance (Where Bid Submitted? = Yes)
  • Balance Won
    • Sum of Principal Balance (where Bid Won? = Yes)
  • Bid to Underwritten %
    • Balance Bid divided by Balance Underwritten
  • Win to Bid %
    • Balance Won divided by Balance Bid
  • Win to Underwritten %
    • Balance Won divided by Balance Underwritten

  Discussion posts and replies are publicly visible

Parents Reply
  • Ok, so let's forget about the picture of the grid that I posted, seems maybe that is throwing things off track, I only posted that to show that I have records of info I need to pull from. What I am trying to create is an interface, with some sort of components on it that will display the result of pulling the record data from the Principle Balance and Bid Amount fields and total each. There won't be any grids of data on the interface to use a local variables for or any data entry to be made. I just need to pull the data that has already been entered during the creation of the records, hence the query record idea? Does that make more sense or less?

Children