Step 1: Map CRM deal owners to AEs
To align commissions to individual AEs, you’ll need to connect CRM data to HRIS data.- Create a new database called Account Owner Mapping. Select your Sales Team database as the source and segment by Name.
- Add a new dimension column and search for Deal Owner. Naming may vary depending on your HRIS integration. You can always check your Deals database for the exact dimension name.
- For each relevant row, select the matching Deal Owner. Skip rows for manually added new hires—they won’t exist in your CRM data.
- In your Deals database, add a Lookup for the **Name **column.

Note: As new employees are hired, you’ll want to revisit the Account Owner Mapping to connect their HRIS record to their CRM record.
Step 2: Add commission rate logic
Create a new number driver column in the Deals database called Commission Rate.Option 1: Flat rate commission
To set a flat commission rate %, you can selectAdd default formula
from the column header sub-menu and hardcode a percentage.

Option 2: Variable commission rates
This example demonstrates how you can set assumptions based on dimension values. In this example,New Business
deals earn an 8% commission, whereas Renewals
earn a 3% commission.
- The formula references the dimension column
DEAL_TYPE
which only contains the two items:New Business
orExisting Business
. - The logic of the formula reads: _if DEAL_TYPE = New Business apply an 8% Commission Rate, otherwise apply 3% Commission Rate. _
Since commissions data is part of compensation, many model owners chose to anonymize commission rates and payouts. To do so, right-click on the driver column header and toggle **Anonymize data. **You can read more about Anonymizing data here
Step 3: Add payout timing logic
In many organizations, commission payouts are deferred until a contract has been active for a set period. Create a new number driver in your Deals database called Payout Date. UsedateAdd()
to add your delay to the deal’s close date. In this example, we assume a 90-day delay.

Show as time series
. This view allows you to check whether the amounts paid land in the correct months.

Step 5: Aggregate commissions by AE
The last step is to aggregate commissions paid by AE. In your Sales Team database, add a number driver for **Commissions. **Set the formula to sum the Commissions Paid driver in your Deals database whereName
is This Name.

