Hi @Jack ,
Do you mean that the value of the "Price" column needs to be automatically filled according to the value of the Choice column "CARS"? If so, you can use a calculated column. This is my test:
- Create a calculated column named
Price
and fill it with the following formula:
=IF(CARS="Choice 1","200",IF(CARS="Choice 2","400",IF(CARS="Choice 3","600","")))
You can change the value in the formula according to your actual needs.
- When different values are selected in the CARS column, the Price column will automatically fill in the corresponding value.
Good day!
If the answer is helpful, please click "Accept as Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.