Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() I would like a to make the cell with the following formula display "N/A" or remain blank when a date is not entered in K4. Does anyone have any suggestions? =((TODAY()-K4)/365)*12 -- CrewDog130 ------------------------------------------------------------------------ CrewDog130's Profile: http://www.thecodecage.com/forumz/member.php?userid=612 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=122178 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try one of these:
=IF(COUNT(K4),(TODAY()-K4)/365*12,"N/A") =IF(COUNT(K4),(TODAY()-K4)/365*12,"") -- Biff Microsoft Excel MVP "CrewDog130" wrote in message ... I would like a to make the cell with the following formula display "N/A" or remain blank when a date is not entered in K4. Does anyone have any suggestions? =((TODAY()-K4)/365)*12 -- CrewDog130 ------------------------------------------------------------------------ CrewDog130's Profile: http://www.thecodecage.com/forumz/member.php?userid=612 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=122178 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'm assuming when you say "when a date is not entered in K4" that you mean
K4 is blank)... =IF(K4="","N/A",((TODAY()-K4)/365)*12) or =IF(K4="","",((TODAY()-K4)/365)*12) depending on if you want N/A or the blank. -- Rick (MVP - Excel) "CrewDog130" wrote in message ... I would like a to make the cell with the following formula display "N/A" or remain blank when a date is not entered in K4. Does anyone have any suggestions? =((TODAY()-K4)/365)*12 -- CrewDog130 ------------------------------------------------------------------------ CrewDog130's Profile: http://www.thecodecage.com/forumz/member.php?userid=612 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=122178 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
find last cell in range with data, display cell address | Excel Worksheet Functions | |||
display text in one cell as a number in an adjacent cell in excel | New Users to Excel | |||
a cell to display number of days in a month given in another cell | Excel Worksheet Functions | |||
Display contents of cell in another cell as part of text string? | New Users to Excel | |||
How to click on a cell and have the content of the cell display in a different cell | Excel Worksheet Functions |