Forum Discussion
JohnShaw19
May 07, 2022Copper Contributor
help with formula
I am sorry if this is simple but I just cannot figure it out. I have a drop down data column with three sizes, 4x6, 5x7, and 9x4 in column A. in column D my heading is "cards per sheet". If I select ...
- May 07, 2022
I forgot 2 closing parentheses - sorry about that. The first formula should be
=IF(A2="4x6",20,IF(A2="5x7",16,IF(A2="9x4",15,"")))
But you have set up date validation for D2 that only allows the values 1, 2, ..., 10. So 20, 16 and 15 will be rejected.
I'd remove the data validation from D2. If you use a formula, data validation is not needed.
HansVogelaar
May 07, 2022MVP
Let's say the drop-downs are in A2 and below.
Enter the following formula in D2, then fill down:
=IF(A2="4x6",20,IF(A2="5x7",16,IF(A2="9x4",15,"")