May 13, 2021 04:50 AM
Hi Community, formulas seem like a bit of a dark art to me so I have no idea where to start, tried a few things but getting nowhere fast!
I have what I think is a basic formula to write involving commission percentage amounts etc.
So a Price, a percentage commission amount of the Price paid to me, the remainder paid to the third party.
So for example, item is £1500 less 40%, £600 to me, £900 to third party. Percentage will be a variable.
Looks pretty straightforward here but not sure how to implement in Airtable. I have attached a screen grab of the relevant fields. The first row has been manually entered to show what I want the formula to do!
Any help greatly appreciated, thank you.
May 13, 2021 09:00 AM
@Chris_Witham This is what you are looking for:
Notice that Expenses and Profit are formula fields.
I did a few things to do this:
Commission Rate
field to a percent as that is the value that you are entering.Expenses
field (Paid to 3rd Party) to the following formula: Price * ( 1 - {Commission Rate})
Price * {Commission Rate}
I hope all of this makes sense! It should be relatively simple to implement. The thing to remember with formulas is to make sure you pass in the proper type. You were probably really close, it’s just that since your commission rate was a number rather than a percent, you would have had to divide by 100 in your formula.
May 13, 2021 09:13 AM
@pcbowers you are a legend! Thank you so much for the most excellent explanation, I am going to implement now!
Cheers!
Chris
May 13, 2021 09:24 AM
@pcbowers Done and dusted, works a treat! Thank you for your help, much appreciated, it was driving me mad!