I've been able to do this in VBA, but not in a formula, but I figure there's got to be a way.
Can anyone tell me how I'd go about comparing the "Text" values rather than "Formula" values of 2 cells?
For instance, I've got a worksheet on a regular basis where I compare 2 date fields. One column of dates includes the time; the other does not.
I found that in VBA, I could look at Range("A1").Text, for instance, and compare that. Is there a way to do something similar in just a formula?
Right now, my formula looks like this:
Thanks for any references/suggestions.
--
"If to err is human, then I must be some kind of human!" -Me
Can anyone tell me how I'd go about comparing the "Text" values rather than "Formula" values of 2 cells?
For instance, I've got a worksheet on a regular basis where I compare 2 date fields. One column of dates includes the time; the other does not.
I found that in VBA, I could look at Range("A1").Text, for instance, and compare that. Is there a way to do something similar in just a formula?
Right now, my formula looks like this:
Code:
=IF(ISBLANK(H4)," ",IF(H4=E4,"Yes","No"))
Thanks for any references/suggestions.
--
"If to err is human, then I must be some kind of human!" -Me