Forum Discussion
FarahSlotegraaf872
Oct 17, 2023Copper Contributor
Numbers in drop down list invisible
Dear reader(s), I am working on a scoring sheet and I need someone's help! Example: A1 has the following drop down options: Arm, Head, Hand, Foot. In B1 I have the code: =IF(A1="hea...
- Oct 17, 2023
Use
=IF(A1="Select",0,IF(A1=1,1,IF(A1=2,2,IF(A1=3,3,""))))
or
=IF(A1="Select", 0, IF(A1="", "", A1))
HansVogelaar
Oct 17, 2023MVP
Use
=IF(A1="Select",0,IF(A1=1,1,IF(A1=2,2,IF(A1=3,3,""))))
or
=IF(A1="Select", 0, IF(A1="", "", A1))
FarahSlotegraaf872
Oct 17, 2023Copper Contributor
=IF(A1="Select",0,IF(A1=1,1,IF(A1=2,2,IF(A1=3,3,""))))
Worked PERFECTLY!
Can't believe the answer was so simple.
Dankje, Hans!!!
Worked PERFECTLY!
Can't believe the answer was so simple.
Dankje, Hans!!!