Articles on: Reports

How to create a Deal Scoring Report?


How to Create a Deal Scoring Report


A Deal Scoring Report helps teams evaluate the potential of deals based on a set of predefined criteria. By assigning scores to each deal, you can quickly prioritize high-value opportunities and focus efforts on the most promising ones. This report is particularly useful for sales and management teams to align on which deals to target and monitor, ultimately increasing efficiency and deal conversion rates.


Visualization:



Steps:


  1. Define Deal Score Criteria: Before building the report, establish scoring criteria for deals based on key indicators. For example, this report uses four factors to score deals:


Location = US: 25ptsNumber of employees > 5000: 25pts (fewer points for lower employee counts)Revenue > 100M: 25 pts (fewer points for lower revenues)EBITDA > $5.00/share: 25 pts (fewer points for lower EBITDA per share)


  1. From the Explore menu, select Pipeline Deals.
  2. In the Field Picker pane under the Deal view, select the following fields:
  • Deal Title
  • Country Code
  • Size ($ m)
  • Number of Employees
  • EBITDA ($ m)
  1. Click on Run button at the top right to generate the data.
  2. In the Field Picker section, go to Custom Fields → Click on Add → choose Table Calculation. Add the following calculations for each scoring criterion:



  1. Repeat step 5 to create the following four table calculations:


1. Country Score:


Note: The result will be different for each organization, therefore type "Country" in the Expression box to search for the correct formulation.


if(
${dashboard_deal.country_code} = "USA",
25,
0
)


For the Format dropdown, select Decimals. Then, from the Decimals dropdown, select "1".



2. Employee Count Score:


Note: The result will be different for each organization, therefore type "Number of Employees" in the Expression box to search for the correct formulation.


if(
${dashboard_deal.number_of_employees} > 5000,
25,
${dashboard_deal.number_of_employees} * 25/5000
)
For the Format dropdown, select Decimals. Then, from the Decimals dropdown, select "1".



3. Revenue Score:


Note: The result will be different for each organization, therefore for the deal size option type "Size" in the Expression box to search for the correct formulation.


if(
${dashboard_deal.size} > 100,
25,
${dashboard_deal.size} * 25/100
)


For the Format dropdown, select Decimals. Then, from the Decimals dropdown, select "1".



4. EBITDA Score:


Note: The result will be different for each organization, therefore type "Ebitda" and "Number of employees" in the Expression box to search for the correct formulation.


if(
${dashboard_deal.ebitda} / ${dashboard_deal.number_of_employees} > 5,
25,
${dashboard_deal.ebitda} / ${dashboard_deal.number_of_employees} * 25 / 5
)


For the Format dropdown, select Decimals. Then, from the Decimals dropdown, select "1".



  1. Total Score Calculation: Add a final table calculation to sum up the scores for each deal:



  1. In the Visualization pane, choose Table as the visualization type. To declutter the report, hide the individual score calculations by clicking the gear icon next to the field → select Hide this field in visualization.



  1. Apply Conditional Formatting: To make the scores visually impactful, go to EditFormatting → Toggle on Enable Conditional Formatting. Add rules to highlight high and low scores with different colors to quickly identify top deals.



By creating this Deal Scoring Report, you’ll streamline the evaluation process, enabling your team to make data-driven decisions and focus on the most valuable deals.


If you have any questions about defining your scoring criteria, building the necessary calculations, or need further assistance in leveraging this report for your deal conversion rates, please don't hesitate to reach out to your Customer Success Manager or our support team via in-platform chat or at support@dealroom.net.

Updated on: 29/06/2025

Was this article helpful?

Share your feedback

Cancel

Thank you!