Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need a formula that will likely be simple enough for all you gurus out
there, but beyond what I have mastered yet in Excel. Here it is: Columns J and K are dates, so....In column L it should have this formula: If K is an earlier date that J, results "EARLY" If K is later than J, results "LATE" If there is nothing in K, results "ON TIME" Thank you in advance Connie |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
try
if(k2<j2,"e",if(k2j2,"L","O")) -- Don Guillett SalesAid Software "Connie Martin" wrote in message ... I need a formula that will likely be simple enough for all you gurus out there, but beyond what I have mastered yet in Excel. Here it is: Columns J and K are dates, so....In column L it should have this formula: If K is an earlier date that J, results "EARLY" If K is later than J, results "LATE" If there is nothing in K, results "ON TIME" Thank you in advance Connie |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you for replying. I'm heading home now for the day. Will look at this
in the a.m. Please check back then. Connie "Don Guillett" wrote: try if(k2<j2,"e",if(k2j2,"L","O")) -- Don Guillett SalesAid Software "Connie Martin" wrote in message ... I need a formula that will likely be simple enough for all you gurus out there, but beyond what I have mastered yet in Excel. Here it is: Columns J and K are dates, so....In column L it should have this formula: If K is an earlier date that J, results "EARLY" If K is later than J, results "LATE" If there is nothing in K, results "ON TIME" Thank you in advance Connie |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Your statement, and Don's answer, both ignore K=J.
If "On Time" is the answer ONLY when K is blank, then =if(k2="","On Time",if(K2j2,"Late","Early")) In this formula, when K=J you'll get "Early" as a result. =if(or(k2=j2,k2=""),"On Time",if(K2j2,"Late","Early")) In this case you'll get "On Time" when K=J "Connie Martin" wrote: I need a formula that will likely be simple enough for all you gurus out there, but beyond what I have mastered yet in Excel. Here it is: Columns J and K are dates, so....In column L it should have this formula: If K is an earlier date that J, results "EARLY" If K is later than J, results "LATE" If there is nothing in K, results "ON TIME" Thank you in advance Connie |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
happy now? <G Assumes that K will be entered last and accounts for the
"dreaded space bar" =IF(LEN(K2)<2,"",IF(K2<J2,"e",IF(K2J2,"L","O"))) -- Don Guillett SalesAid Software "Duke Carey" wrote in message ... Your statement, and Don's answer, both ignore K=J. If "On Time" is the answer ONLY when K is blank, then =if(k2="","On Time",if(K2j2,"Late","Early")) In this formula, when K=J you'll get "Early" as a result. =if(or(k2=j2,k2=""),"On Time",if(K2j2,"Late","Early")) In this case you'll get "On Time" when K=J "Connie Martin" wrote: I need a formula that will likely be simple enough for all you gurus out there, but beyond what I have mastered yet in Excel. Here it is: Columns J and K are dates, so....In column L it should have this formula: If K is an earlier date that J, results "EARLY" If K is later than J, results "LATE" If there is nothing in K, results "ON TIME" Thank you in advance Connie |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Golly it's hard to diagnose "none of this works" Do you think you can spare
a few facts? "Connie Martin" wrote: Sorry to say, but none of this works. "Don Guillett" wrote: happy now? <G Assumes that K will be entered last and accounts for the "dreaded space bar" =IF(LEN(K2)<2,"",IF(K2<J2,"e",IF(K2J2,"L","O"))) -- Don Guillett SalesAid Software "Duke Carey" wrote in message ... Your statement, and Don's answer, both ignore K=J. If "On Time" is the answer ONLY when K is blank, then =if(k2="","On Time",if(K2j2,"Late","Early")) In this formula, when K=J you'll get "Early" as a result. =if(or(k2=j2,k2=""),"On Time",if(K2j2,"Late","Early")) In this case you'll get "On Time" when K=J "Connie Martin" wrote: I need a formula that will likely be simple enough for all you gurus out there, but beyond what I have mastered yet in Excel. Here it is: Columns J and K are dates, so....In column L it should have this formula: If K is an earlier date that J, results "EARLY" If K is later than J, results "LATE" If there is nothing in K, results "ON TIME" Thank you in advance Connie |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Perhaps your dates are not really dates???? maybe show us. Mind reading is
extra. -- Don Guillett SalesAid Software "Connie Martin" wrote in message ... Sorry to say, but none of this works. "Don Guillett" wrote: happy now? <G Assumes that K will be entered last and accounts for the "dreaded space bar" =IF(LEN(K2)<2,"",IF(K2<J2,"e",IF(K2J2,"L","O"))) -- Don Guillett SalesAid Software "Duke Carey" wrote in message ... Your statement, and Don's answer, both ignore K=J. If "On Time" is the answer ONLY when K is blank, then =if(k2="","On Time",if(K2j2,"Late","Early")) In this formula, when K=J you'll get "Early" as a result. =if(or(k2=j2,k2=""),"On Time",if(K2j2,"Late","Early")) In this case you'll get "On Time" when K=J "Connie Martin" wrote: I need a formula that will likely be simple enough for all you gurus out there, but beyond what I have mastered yet in Excel. Here it is: Columns J and K are dates, so....In column L it should have this formula: If K is an earlier date that J, results "EARLY" If K is later than J, results "LATE" If there is nothing in K, results "ON TIME" Thank you in advance Connie |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Okay, you guys are real funny! :) Sorry for the delay in getting back here.
It's just been so busy. Anyway, my dates are in date format. Here is a sample. The third column is what the formula SHOULD yield. Feb-08-06 Feb-02-06 Early Feb-06-06 On Time Feb-01-06 On Time Feb-17-06 Jan-31-06 Early Feb-01-06 Feb-06-06 Late Connie "Don Guillett" wrote: Perhaps your dates are not really dates???? maybe show us. Mind reading is extra. -- Don Guillett SalesAid Software "Connie Martin" wrote in message ... Sorry to say, but none of this works. "Don Guillett" wrote: happy now? <G Assumes that K will be entered last and accounts for the "dreaded space bar" =IF(LEN(K2)<2,"",IF(K2<J2,"e",IF(K2J2,"L","O"))) -- Don Guillett SalesAid Software "Duke Carey" wrote in message ... Your statement, and Don's answer, both ignore K=J. If "On Time" is the answer ONLY when K is blank, then =if(k2="","On Time",if(K2j2,"Late","Early")) In this formula, when K=J you'll get "Early" as a result. =if(or(k2=j2,k2=""),"On Time",if(K2j2,"Late","Early")) In this case you'll get "On Time" when K=J "Connie Martin" wrote: I need a formula that will likely be simple enough for all you gurus out there, but beyond what I have mastered yet in Excel. Here it is: Columns J and K are dates, so....In column L it should have this formula: If K is an earlier date that J, results "EARLY" If K is later than J, results "LATE" If there is nothing in K, results "ON TIME" Thank you in advance Connie |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Dynamic Range with unused formula messing up x axis on dynamic graph | Charts and Charting in Excel | |||
2 Nesting questions | Excel Worksheet Functions | |||
Formula Problem - interrupted by #VALUE! in other cells!? | Excel Worksheet Functions | |||
Formula checking multiple worksheets | Excel Worksheet Functions | |||
Match / Vlookup within an Array formula | Excel Discussion (Misc queries) |