Upcoming database upgrades. Airtable functionality will be reduced for ~15 minutes at 06:00 UTC on Feb. 4 / 10:00 pm PT on Feb. 3. Learn more here
Mar 04, 2020 08:34 PM
Is it possible to override a cell with a formula? For the most part, one of my columns should be a formula, but other times I want to hard-code it. This has kept me from using AirTable to track my bookings/commissions because it’s not as flexible as Excel in this way. Would love to be able to use the system for what I need. Thanks!
Mar 04, 2020 08:40 PM
You can have your main field for whatever it is you want to display be a formula that will use your manually entered override value from another field, if it exists, or otherwise display the result of the formula.
Here’s an example for a {Commission}
field:
IF(
{Override Commission Amount},
{Override Commission Amount},
{Total} * 0.15
)