Forum Discussion
ShaneATV
Feb 23, 2024Copper Contributor
Autofill Formula causing a problem
I'm making a template form for organisations to fill in and I'm trying to make as little work for them as possible by prefilling as much information as possible or adding formulas to auto-generate da...
ShaneATV
Feb 23, 2024Copper Contributor
Yes, you have understood correctly which is good because it was hard trying to explain, and I wasn't sure that I explained it very well lol. Which isn't a huge issue if they change one and realise that it changed all, so they change the next one back to what it was. However, if it's sporadically regional or specialist throughout the document it would be frustrating getting several hundred entries down and changing everything to the one value. So, if there's no work around or alternative formula that might work, I guess dropping the auto-population and just keeping the dropdown box will be the only way.
djclements
Feb 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...