Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need a formula (will be in L2) to do the following--
IF G2 contains the text "bail" then L2 should be the contents of cells B2 G2 H2 separated by commas. If G2 does not contain the text "bail" then I want L2 to remain blank. Any help would be appreciated. Thanks! Heather |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(G2="bail",B2&","&G2&","&H2,"")
-- Best Regards, Luke M "HeatherJ" wrote in message ... I need a formula (will be in L2) to do the following-- IF G2 contains the text "bail" then L2 should be the contents of cells B2 G2 H2 separated by commas. If G2 does not contain the text "bail" then I want L2 to remain blank. Any help would be appreciated. Thanks! Heather |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
Try this in L2 =IF(G2="Bail",B2&","&G2,"") -- Mike When competing hypotheses are otherwise equal, adopt the hypothesis that introduces the fewest assumptions while still sufficiently answering the question. "HeatherJ" wrote: I need a formula (will be in L2) to do the following-- IF G2 contains the text "bail" then L2 should be the contents of cells B2 G2 H2 separated by commas. If G2 does not contain the text "bail" then I want L2 to remain blank. Any help would be appreciated. Thanks! Heather |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(ISERROR(FIND("bail",G2)),"",B2 & "," & G2 & "," & H2)
-- Gary''s Student - gsnu201003 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|