Forum Discussion
Autofill Formula causing a problem
ShaneATV If I've understood the setup correctly, the formulas in column B will return the value of the cell above it, if the cell in column A is not blank; furthermore, column B has a Data Validation list with two options for "Specialist" and "Regional", which can be used to manually override the formula. Since going back and changing the funding stream in row 9 from say "Regional" to "Specialist" will cause the formulas below it to now say "Specialist", the user would also have to change row 10 back to "Regional", if row 9 was the only row they wanted to change. I don't think there is any other way to handle this scenario with the current setup.
- djclementsFeb 23, 2024Bronze Contributor
ShaneATV Yes, the current setup would be prone to user errors, as changing one cell can unintentionally affect others.
Since there are only two options, "Specialist" and "Regional", if one of them is typically used more often than the other, you might also consider modifying the formula slightly to set a "default" option. For example, if "Regional" is used most often, you could try =IF(A6="","","Regional"). This will auto-fill column B with "Regional" by default. The user can then change it to "Specialist" as needed, using the Data Validation list. With this method, changes to one cell would not affect the others. Just a thought...