Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Hi,
I want to write a formula along the lines of: =if( b2 is bold, b2, else "") Any ideas would be welcome. PS the Excel is 2002. Thanks for looking Paul |
#2
![]() |
|||
|
|||
![]()
Paul,
You could add a UDF like so '----------------------------------------------------------------- Function IsBold(rng As Range) '----------------------------------------------------------------- If rng.Areas.Count 1 Then IsBold = CVErr(xlErrValue) Exit Function ElseIf rng.Cells.Count 1 Then IsBold = CVErr(xlErrValue) Exit Function Else IsBold = rng.Font.Bold End If End Function and then use =IF(IsBold(B2),B2,"") but be aware that bold does not trigger the calculate event so if B2 is changed, you formula will not update. -- HTH RP (remove nothere from the email address if mailing direct) "Paul" wrote in message ... Hi, I want to write a formula along the lines of: =if( b2 is bold, b2, else "") Any ideas would be welcome. PS the Excel is 2002. Thanks for looking Paul |
#3
![]() |
|||
|
|||
![]()
If B2 is BOLD because of Conditional Formatting, then just replace the "B2
is bold" in your formula with whatever conditions actually make B2 BOLD.........but the BOLD will not carry through to your new result just using a formula............also, you do not need the "else" in your formula.......... Vaya con Dios, Chuck, CABGx3 "Paul" wrote in message ... Hi, I want to write a formula along the lines of: =if( b2 is bold, b2, else "") Any ideas would be welcome. PS the Excel is 2002. Thanks for looking Paul |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copy with link between sheets - all the formats dissapear?!? | Excel Discussion (Misc queries) | |||
How can I know the no of different cell formats in a Excel workbo. | Excel Discussion (Misc queries) | |||
vlookup change column index position - without changing formulae | Excel Worksheet Functions | |||
Too Many Different Cell Formats | Excel Worksheet Functions | |||
Too Many Different Cell Formats | Excel Worksheet Functions |