Using less than "<" in formula

  • Thread starter Thread starter Bernie R
  • Start date Start date
B

Bernie R

I'm trying to use a formula in one worksheet that draws data from two other
worksheet. I have no problem using the ">" in formulas, but when I use the
"<" it won't work. My formula is =if(ust!i9="m9",
if(rawdata!r2"<05may08",ust!$b12," ")

It has issues with the date. I tried using AND in the formula but it
error'd on the date.

Any help would be greatly appreciated.
 
Take the < symbol out of the quotes. And "05may08" is not a date. Put the
date in a cell and reference the cell. HTH Otto
 
I would use an unambiguous date format:

=if(ust!i9="m9",if(rawdata!r2<date(2008,5,5),ust!$b12,"")

And I'd return an empty string "" instead of " ".
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top