Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The current formula I have is...
=IF(COUNTBLANK(INDEX(F:L,ROW(),))<COUNTBLANK(INDEX (F:L,ROW()+1,)),"PENDING CREDITS","") I want to make one addition to this formula. Before it does my current formula I want it to check if any cells in F:L,ROW() are <0, if they are i want it to be blank, if not then I want it to perform my current formula. THANKS IN ADVANCE! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(INDEX(F:L,ROW()=0),IF(COUNTBLANK(INDEX(F:L,RO W(),))<COUNTBLANK(INDEX(F:L,ROW()+1,)),"PENDING
CREDITS","")) "JBoyer" wrote in message ... The current formula I have is... =IF(COUNTBLANK(INDEX(F:L,ROW(),))<COUNTBLANK(INDEX (F:L,ROW()+1,)),"PENDING CREDITS","") I want to make one addition to this formula. Before it does my current formula I want it to check if any cells in F:L,ROW() are <0, if they are i want it to be blank, if not then I want it to perform my current formula. THANKS IN ADVANCE! |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
That formula didnt seem to work for me...
"Corey" wrote: =IF(INDEX(F:L,ROW()=0),IF(COUNTBLANK(INDEX(F:L,RO W(),))<COUNTBLANK(INDEX(F:L,ROW()+1,)),"PENDING CREDITS","")) "JBoyer" wrote in message ... The current formula I have is... =IF(COUNTBLANK(INDEX(F:L,ROW(),))<COUNTBLANK(INDEX (F:L,ROW()+1,)),"PENDING CREDITS","") I want to make one addition to this formula. Before it does my current formula I want it to check if any cells in F:L,ROW() are <0, if they are i want it to be blank, if not then I want it to perform my current formula. THANKS IN ADVANCE! |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Does this do what you want?
=IF(COUNTIF(F:L,"<0")0,"",IF(COUNTBLANK(INDEX(F:L ,ROW(),))<COUNTBLANK(INDEX(F:L,ROW()+1,)),"PENDING CREDITS","")) Rick "JBoyer" wrote in message ... The current formula I have is... =IF(COUNTBLANK(INDEX(F:L,ROW(),))<COUNTBLANK(INDEX (F:L,ROW()+1,)),"PENDING CREDITS","") I want to make one addition to this formula. Before it does my current formula I want it to check if any cells in F:L,ROW() are <0, if they are i want it to be blank, if not then I want it to perform my current formula. THANKS IN ADVANCE! |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Yes, Perfect! Thanks
"Rick Rothstein (MVP - VB)" wrote: Does this do what you want? =IF(COUNTIF(F:L,"<0")0,"",IF(COUNTBLANK(INDEX(F:L ,ROW(),))<COUNTBLANK(INDEX(F:L,ROW()+1,)),"PENDING CREDITS","")) Rick "JBoyer" wrote in message ... The current formula I have is... =IF(COUNTBLANK(INDEX(F:L,ROW(),))<COUNTBLANK(INDEX (F:L,ROW()+1,)),"PENDING CREDITS","") I want to make one addition to this formula. Before it does my current formula I want it to check if any cells in F:L,ROW() are <0, if they are i want it to be blank, if not then I want it to perform my current formula. THANKS IN ADVANCE! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
changing formula | Excel Worksheet Functions | |||
how to edit formula without changing formula of each cell | Excel Worksheet Functions | |||
Changing Formula | Excel Discussion (Misc queries) | |||
Changing formula to a value | Excel Worksheet Functions | |||
Copy Formula Down Without Changing Entire Formula | Excel Discussion (Misc queries) |