Forum Discussion
vinh nhut nguyen
Mar 25, 2017Copper Contributor
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. ...
- 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")
dilipandey
Mar 25, 2017Copper Contributor
with "K24 = H16:H22" are you trying to see if H16:H22 contains K24 ?
If yes, then use match function instead.
Regards,
DILIPandey