Forum Discussion

vinh nhut nguyen's avatar
vinh nhut nguyen
Copper Contributor
Mar 25, 2017
Solved

Discrepancy between function Argument and cell display

When I type =IF(OR(K24 = H16:H22),"","<-- MUST BE A, B, C, D, E ,F or G") in cell L24 of Music Notation tab, the function Arguments window return correct formula result but the cell gives #VALUE. ...
  • SergeiBaklan's avatar
    Mar 25, 2017

    Yes, that could be

    =IF(ISERROR(MATCH(K24,H16:H22,0)),
       "<-- MUST BE A, B, C, D, E ,F or G",
       "")

    or

    =IF(
       (K24>=H16)*(K24<=H22),
       "",
       "<-- MUST BE A, B, C, D, E ,F or G")

     

     

     

     

Resources