Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I inherited a spreadsheet that uses whether or not a cell is boldfaced to
tell the reader something. I need to create mailing labels that only reference the boldfaced cells. Is that possible? Or should I take the time to redesign the project? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Use following UDF that will return TRUE if referenced cell is bold:
Function isBold(rCell As Range) As Boolean isBold = rCell.Font.Bold End Function HTH -- AP "keybordrfm" a écrit dans le message de news: ... I inherited a spreadsheet that uses whether or not a cell is boldfaced to tell the reader something. I need to create mailing labels that only reference the boldfaced cells. Is that possible? Or should I take the time to redesign the project? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Nel post
*keybordrfm* ha scritto: I inherited a spreadsheet that uses whether or not a cell is boldfaced to tell the reader something. I need to create mailing labels that only reference the boldfaced cells. Is that possible? Or should I take the time to redesign the project? I think the second should be better... Till Excel 2003 the function can manage cells' values, not formatting. Maybe you can succeed with some VBA code, but I can't help that way... -- Hope I helped you. Thanks in advance for your feedback. Ciao Franz Verga from Italy |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Cell Limitations ? Formatting and Size when exporting to Tab based Text file? | Excel Worksheet Functions | |||
=CELL("filename") VOLATILE? | Excel Worksheet Functions | |||
How do I set text to top of cell next to wrap text in Excel? | New Users to Excel | |||
Wrap text ceases to function in Excel if cell exceeds 9 lines | Excel Worksheet Functions | |||
Function syntax to compare cell contents | Excel Worksheet Functions |