Seeking debugging help, I want a cell to output an X if the start date or due date fall within a certain month, however, when I run the formula on my column some cells do not have any text in them and they are outputting as "true". I need to fix the code so that the output in a cell that is blank (no text) is "false". here is what I have so far
=IF(OR(D5>=DATEVALUE("6/1/2017"), E5<=DATEVALUE("6/30/2017")), "X", "")
