Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 "Bernie R" <Bernie wrote in message ... 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. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
DATEVALUE("05MAY08") will convert that text to a valid excel date
"Otto Moehrbach" wrote: 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 "Bernie R" <Bernie wrote in message ... 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. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 " ". Bernie R wrote: 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. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell | Excel Discussion (Misc queries) | |||
change "true" and "false" to "availble" and "out of stock" | Excel Worksheet Functions | |||
HELP on "left","right","find","len","substitute" functions | Excel Discussion (Misc queries) | |||
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next | New Users to Excel | |||
conditional formula to show "open" or "closed" | Excel Worksheet Functions |