Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi There. Row 1 contains date information - the last fri in a month. Eg Cell b1 is 3 Nov. Cell c1 is 10 Nov Cell d1 is 17 nov etc In say A2 there will be a variable date - say 12 Nov I need a formulae that will put the word DUE in cell d2 (as 12 Nov is 10 Nov, but < 17 Nov... Any ideas...? (dont have to worry about excluding weekends!) Thanks!!!!!! Regards Darin *** Sent via Developersdex http://www.developersdex.com *** |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=IF(AND(A2C1,A2<D1),"Due","")
-- HTH Bob Phillips (replace xxxx in the email address with gmail if mailing direct) "Darin Kramer" wrote in message ... Hi There. Row 1 contains date information - the last fri in a month. Eg Cell b1 is 3 Nov. Cell c1 is 10 Nov Cell d1 is 17 nov etc In say A2 there will be a variable date - say 12 Nov I need a formulae that will put the word DUE in cell d2 (as 12 Nov is 10 Nov, but < 17 Nov... Any ideas...? (dont have to worry about excluding weekends!) Thanks!!!!!! Regards Darin *** Sent via Developersdex http://www.developersdex.com *** |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Thank! - As always works perfectly, and quite simple too! *** Sent via Developersdex http://www.developersdex.com *** |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Darin, I think this question should really have been posted to the Excel General forum not the programmers forum. However the following formula should help. You may want to consider changing the and < arguments to = and <= as necessary so that if the date is equal to the column header it will fall due according to your arguments. Place this in B2 (according to your example) and copy accross =IF(AND($A2B1,$A2<C1),"Due","Not Due") Regards Michael Beckinsale |
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) | |||
"CELL("FILENAME") NOT UPDATE AFTER "SAVE AS" ACTION | Excel Discussion (Misc queries) | |||
Help!!! Enter "7" in a cell and Excel changes the "7" to "11" immediately!!! | Excel Discussion (Misc queries) | |||
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next | New Users to Excel | |||
Complex if test program possible? If "value" "value", paste "value" in another cell? | Excel Discussion (Misc queries) |