Forum Discussion

FarahSlotegraaf872's avatar
FarahSlotegraaf872
Copper Contributor
Oct 17, 2023
Solved

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...
  • HansVogelaar's avatar
    Oct 17, 2023

    FarahSlotegraaf872 

    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))

Resources