Hello!
To achieve the desired functionality of auto-populating the commission when a number is entered in the "Total Push Mobile" column, and having the salary and commission totaled together, you can use Excel formulas.
Assuming your table has columns named "Total Push Mobile", "Salary", and "Commission", you can use the following formulas:
1. For auto-populating the commission based on the Total Push Mobile:
- In the Commission column, you can use a formula like this:
Code:
=IF(ISNUMBER([@'Total Push Mobile']), [@'Total Push Mobile'] * 0.05, "")
This formula multiplies the value in the "Total Push Mobile" column by 0.05 (assuming 5% commission rate) and displays the result in the Commission column.
2. For totaling the Salary and Commission:
- In a separate cell where you want to display the total, you can use:
Code:
=SUM([@Salary], [@Commission])
This formula will sum the values in the Salary and Commission columns for each row.
Make sure to adjust the formulas based on your actual column names and commission rate. Let me know if you need further clarification on how to set this up in your Excel table.