Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Im trying to create a report using multiple IF criteria. My formula is
working however how can i get the field to be blank if it doesnt meet the criteria? currently if it matches criteria in column C and not column D it is blank but if it doesnt match column C it sais "FALSE". =IF(AND(ISNUMBER(SEARCH($F$1,$D4))),IF($C4=F$2,$B4 ),"") Thank you |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Not sure why you're using AND. It's not doing anything.
Try it like this: =IF(COUNT(SEARCH($F$1,$D4)),IF($C4=F$2,$B4,""),"") -- Biff Microsoft Excel MVP "dvya" wrote in message ... Im trying to create a report using multiple IF criteria. My formula is working however how can i get the field to be blank if it doesnt meet the criteria? currently if it matches criteria in column C and not column D it is blank but if it doesnt match column C it sais "FALSE". =IF(AND(ISNUMBER(SEARCH($F$1,$D4))),IF($C4=F$2,$B4 ),"") Thank you |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
Your AND is superfluous, your not 'anding' anything and to eliminate false add another NULL false condition =IF(ISNUMBER(SEARCH($F$1,$D4)),IF($C4=F$2,$B4,""), "") Mike "dvya" wrote: Im trying to create a report using multiple IF criteria. My formula is working however how can i get the field to be blank if it doesnt meet the criteria? currently if it matches criteria in column C and not column D it is blank but if it doesnt match column C it sais "FALSE". =IF(AND(ISNUMBER(SEARCH($F$1,$D4))),IF($C4=F$2,$B4 ),"") Thank you |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
multiple function is it even possible | Excel Worksheet Functions | |||
Multiple IF function (maybe OR) | Excel Worksheet Functions | |||
Multiple IF Function | Excel Worksheet Functions | |||
Multiple results from multiple criteria using IF function | Excel Discussion (Misc queries) | |||
Multiple Sheet, Multiple Criteria Look-Up Function Help | Excel Worksheet Functions |