Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi - I currently have this formula:
=IF(T2<10,Y, ) Problem is, if cell T2 is blank/null, I still get a Y, but I dont want one. How can I enhance this formula so that it ignores null value in T2? Thank you in advance for your help! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=if(t2="","",if(t2<10, ....
cjborntorun wrote: Hi - I currently have this formula: =IF(T2<10,Y, ) Problem is, if cell T2 is blank/null, I still get a Y, but I dont want one. How can I enhance this formula so that it ignores null value in T2? Thank you in advance for your help! -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
Try this =IF(AND(T2<"",T2<10),"Y","") Mike "cjborntorun" wrote: Hi - I currently have this formula: =IF(T2<10,Y, ) Problem is, if cell T2 is blank/null, I still get a Y, but I dont want one. How can I enhance this formula so that it ignores null value in T2? Thank you in advance for your help! |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Dave - Your suggestion worked. Thanks very much.
"cjborntorun" wrote: Hi - I currently have this formula: =IF(T2<10,Y, ) Problem is, if cell T2 is blank/null, I still get a Y, but I dont want one. How can I enhance this formula so that it ignores null value in T2? Thank you in advance for your help! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
ISBLANK function not working when cell is blank dut to function re | Excel Discussion (Misc queries) | |||
copy of excel file not showing formulal/function in the function b | Excel Discussion (Misc queries) | |||
LINKEDRANGE function - a complement to the PULL function (for getting values from a closed workbook) | Excel Worksheet Functions | |||
Offset function with nested match function not finding host ss. | Excel Worksheet Functions | |||
Emulate Index/Match combo function w/ VBA custom function | Excel Worksheet Functions |