Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am creating an audit worksheet and I am have having trouble
configuring this one part of my function. I currently have 12 columns listed 1-12 (to represent the months) and there are values for each row. I have another column which contains a term date in date format "mm/dd/yy". I need to write a formula which says that if there is a term date then there should be a value other than 0 in the correspoding column. For example if the term date is 06/05/2006. Then contributions should be given up to 06/2006. Here is the formula which I currently have which does not mention term dates but does take care of my one audit problem. =IF(J:J="",COUNTIF(K2:V2,"0")*58) Any input would be greatly appreciated. -Anthony Morano |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Are you testing for column J having no entries? If so, try:
=IF(COUNTA(J:J)=0,COUNTIF(K2:V2,"0")*58) " wrote: I am creating an audit worksheet and I am have having trouble configuring this one part of my function. I currently have 12 columns listed 1-12 (to represent the months) and there are values for each row. I have another column which contains a term date in date format "mm/dd/yy". I need to write a formula which says that if there is a term date then there should be a value other than 0 in the correspoding column. For example if the term date is 06/05/2006. Then contributions should be given up to 06/2006. Here is the formula which I currently have which does not mention term dates but does take care of my one audit problem. =IF(J:J="",COUNTIF(K2:V2,"0")*58) Any input would be greatly appreciated. -Anthony Morano |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Match Last day of this month to last day of last month | Excel Discussion (Misc queries) | |||
Date arithmetic: adding 1 month to prior end of month date | Excel Worksheet Functions | |||
Sort month/date/year data using month and date only | Excel Discussion (Misc queries) | |||
=VLOOKUP(1,Nationality!B5:B29,IF(MONTH(date)6,MONTH(date)-6, MON | Excel Worksheet Functions | |||
Month to date sales - reset in new month??? | Excel Worksheet Functions |