11 Registration Instance Totals Report Shared by Steven Kelly, Simple Donation 4 months ago 10.0 Administration / Finance, General Beginner This report will help your event organizers keep quick and easy track of the amount paid, due, and how much has been discounted for an event in one quick and easy report.Set Up: Navigate to the Event Registration Page (Tools -> Event Registration)Select an Active Registration Instance from the 'Active Registration Instance List' BlockOn the Registrations page of the Registration Instance page show the Page Zones by selecting the Page Zone button on the admin bar or by pressing Alt + Z on Windows or Ctrl + Opt + Z for MacScroll down to the bottom of the page and find 'Section D' and select the 'Zone Blocks' settingPress the '+' on the 'SectionD Zone' block or press Alt + N on Windows or Ctrl + Opt + N for Mac Add a name to the Name field. Make sure the default Type of 'HTML Content' is selected, select 'Save,' and select 'Done' last.Show the Block Configuration Setting by selecting 'Block Configuration' on the Admin Bar or by pressing Alt + B on Windows or Ctrl + Opt + B for Mac Hover over the arrow in Section D where the new HTML Block that was just created and press the 'Block Properties' buttonUnder the 'Enable Lava Commands' settings select the 'Rock Entity' setting and select 'Save'Hover over the arrow in Section D where the new HTML Block that was just created and press the 'Edit HTML' buttonCopy this LAVA to the HTML Block and select 'Save'{% assign InstanceId = 'Global' | PageParameter:'RegistrationInstanceId' %} {% assign TotalBalanceDue = 0 %} {% assign TotalCostAmount = 0 %} {% assign TotalPaidAmount = 0 %} {% registration where:'RegistrationInstanceId == {{InstanceId}}' %} {% for registration in registrationItems %} {% assign TotalBalanceDue = TotalBalanceDue | Plus: registration.BalanceDue %} {% assign TotalCostAmount = TotalCostAmount | Plus: registration.TotalCost %} {% assign TotalPaidAmount = TotalPaidAmount | Plus: registration.TotalPaid %} {% endfor %} {% endregistration %} {% assign TotalDiscountAmount = TotalCostAmount | Minus:TotalPaidAmount | Minus:TotalBalanceDue %} Registration Instance Totals Total Paid: {{ TotalPaidAmount | FormatAsCurrency }} Total Balance Due: {{ TotalBalanceDue | FormatAsCurrency }} Total Discount: {{ TotalDiscountAmount | FormatAsCurrency }} Total Cost: {{ TotalCostAmount | FormatAsCurrency }} If set up correctly the block should appear like this on Registration Instance Pages