Save the date! Join us on October 16 for our Product Ops launch event. Register here.
Sep 16, 2021 12:52 AM
Based on template by @kuovonne ,
I want to use button to run the script. But I don’t want create two buttons.
My scenario is when Single Select field is “Not Started”, when I press the button, it will change to “In Progress”. When the field is “In Progress”, then I press the button again, it will change to “Completed”.
How do I achieve this?
Thanks.
Sep 16, 2021 04:36 AM
You need a script that reads the current value of the script and then decides on the next value based on the current value.
Do you know how to write code? Are you interested in learning how to write code? If you are interested in learning to code, this would be a great beginner project.
Sep 16, 2021 03:41 PM
Unfortunately, I’m a beginner coder. I’m learning it. So what I’m doing is ask two inputs in the beginning (achieved). After that I put if and else if statement just before “await” function to check what the value is.
However it doesn’t work. Am I doing in the right direction?
Sep 16, 2021 04:17 PM
There are many ways to do things in code. It is hard to tell if you are in the right track or not from your post. You can try running you code to see what happens. If you get error messages, try to figure out what they mean. Use console.log
to output variables to see their values. If you get stuck on something, post a screen shot of your code and the results of running it.
Sep 17, 2021 12:00 AM
1st Step
2nd Step
However, it’s not working. It’s not showing any error though. Do I put if statement in the wrong place?
Sep 17, 2021 06:25 AM
Your code is not producing any errors because it is grammatically correct code. However, it is not working properly because the logic for your code is wrong.
I recommend using console.log()
or output.inspect()
to show the values of variables so that you can better understand what is going on. For example, try console.log(settings.singleselectField.id)
and you will see that it is not the value that you expect.
What resources do you have for learning to code?
If you have not coded before, you may need to back up a bit to learn some of the basics.
If you do not know how to do something specific to Airtable, the scripting documentation has instructions, although you may need to dig a bit to find the exact info you want.
If you want personal coaching, I offer appointments.
Sep 18, 2021 03:02 AM
Thanks. I will try it this weekend.