Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need to input a function or if statement that will perform the following
function: If cell J27 contains the text "Y" complete this formula (=NETWORKDAYS($C26,$E26,$D$85:$E$85)-1) in cell F27, if J27 is any other letter cell F27 should remain blank Also if cell J27 contains text "N" complete this formula (=NETWORKDAYS($C26,$E26,$D$85:$E$85)-1) in cell G27, if J27 is any other letter cell G27 should remain blank The cells in the networkdays formula are all dates. The formula or function will be used in a large column so cell numbers at each row will be different. Any help would be appreciated |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In F27, enter:
=if(J27="Y",NETWORKDAYS($C26,$E26,$D$85:$E$85)-1,"") In G27, enter: =if(J27="N",NETWORKDAYS($C26,$E26,$D$85:$E$85)-1,"") Just copy this down the column. If you need more help, post back. Regards, Fred "KrissyiP" wrote in message ... I need to input a function or if statement that will perform the following function: If cell J27 contains the text "Y" complete this formula (=NETWORKDAYS($C26,$E26,$D$85:$E$85)-1) in cell F27, if J27 is any other letter cell F27 should remain blank Also if cell J27 contains text "N" complete this formula (=NETWORKDAYS($C26,$E26,$D$85:$E$85)-1) in cell G27, if J27 is any other letter cell G27 should remain blank The cells in the networkdays formula are all dates. The formula or function will be used in a large column so cell numbers at each row will be different. Any help would be appreciated |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
IF function returns function statement rather than result | Excel Worksheet Functions | |||
IF Then statement or another function to look for a value | Excel Worksheet Functions | |||
Function IF statement | Excel Worksheet Functions | |||
Function Conflicts with an If/Then Statement | Excel Worksheet Functions | |||
WORKDAY Function in an IF statement | Excel Worksheet Functions |