Feb 15, 2024 02:05 AM - edited Feb 15, 2024 02:07 AM
Trying to create a condition via formula which will mean that a client won't be able to be quoted via airtable extension with the following:
Formula:
Solved! Go to Solution.
Mar 07, 2024 03:22 AM
Managed to sort this out with a single select toggle on the client side, which I then moved over to the respective quoting table with a conditional look up field and then added this onto the extension to populate when ever a client is on hold
Feb 29, 2024 05:07 AM - edited Mar 01, 2024 10:23 AM
I'm encountering a similar issue. I've been attempting to create a condition via formula in Airtable to manage quoting clients based on their status. Here's the formula I've been working with:
IF(Type="Client", IF({On Hold}="On Hold">"Good", " Good to Quote", "On Hold - Do not Quote"))
The objective is to ensure that clients are only quoted if they are marked as "Good" in the {On Hold} field. We're aiming to have the "On Hold" status propagate through to an extension used for sending quotes to clients. Moreover, you can download capcut mod apk from the given link.
We're using a single text field for the client's name and a single select field for their status (On Hold/Good). Any insights or solutions would be greatly appreciated!
Mar 07, 2024 03:22 AM
Managed to sort this out with a single select toggle on the client side, which I then moved over to the respective quoting table with a conditional look up field and then added this onto the extension to populate when ever a client is on hold
Apr 18, 2024 09:55 PM
@joekutta wrote:I'm encountering a similar issue. I've been attempting to create a condition via formula in Airtable to manage quoting clients based on their status. Here's the formula I've been working with:
IF(Type="Client", IF({On Hold}="On Hold">"Good", " Good to Quote", "On Hold - Do not Quote"))
The objective is to ensure that clients are only quoted if they are marked as "Good" in the {On Hold} field. We're aiming to have the "On Hold" status propagate through to an extension used for sending quotes to clients. Moreover, you can download capcut mod apk from the given link.
We're using a single text field for the client's name and a single select field for their status (On Hold/Good). Any insights or solutions would be greatly appreciated!
Your formula seems to be on the right track, but there's a small issue in the comparison part. Let's refine it:
```plaintext
IF(
Type = "Client",
IF(
{On Hold} = "On Hold",
"❌ On Hold - Do not Quote",
"✅ Good to Quote"
)
)
```
This formula checks if the record type is "Client". If it is, then it further checks if the "On Hold" field equals "On Hold". If it does, it returns "❌ On Hold - Do not Quote"; otherwise, it returns "✅ Good to Quote".
Make sure to replace "❌" and "✅" with the appropriate symbols that you want to use in your Airtable setup.
Once this condition is set up, the "On Hold" note should propagate correctly through to your extension used for sending quotes to clients.
Jun 02, 2024 01:00 AM
I'm having trouble with a formula in Airtable. I want to create a condition that lets us know if we can quote a client based on their status. Here's the formula I'm using:
IF(Type="Client", IF({On Hold}="On Hold">"Good", "Good to Quote", "On Hold - Do not Quote"))
The goal is to only quote clients if their status in the {On Hold} field is marked as "Good". This status needs to show up in an extension we use for sending quotes to clients. Also, you can Download CapCut mod APK for iOS from the provided link.
We're using a text field for the client's name and a single select field for their status (On Hold/Good). Any help or solutions would be great!