Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 32
Default Bold and formated cell wnat to delete in one stroke

I want to select all high lighted cells (with Bold font or cell formatted
with any color) in selected range. With one stroke. Becuase i want to delete
all Bold and formatted cells.

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 142
Default Bold and formated cell wnat to delete in one stroke

You can download the ASAP Utilities for free and install it ( add in ) then
select SELECTCONDITIONAL SELECT CELLS

http://www.asap-utilities.com/downlo...-utilities.php
Or go to Andrews and you can get info on codes for this too
http://www.andrewsexceltips.com/menu.htm


I want to select all high lighted cells (with Bold font or cell formatted
with any color) in selected range. With one stroke. Becuase i want to delete
all Bold and formatted cells.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default Bold and formated cell wnat to delete in one stroke


range("a2:z22").Font.Bold = False



--
Don Guillett
SalesAid Software

"Qazi Ahmad" wrote in message
...
I want to select all high lighted cells (with Bold font or cell formatted
with any color) in selected range. With one stroke. Becuase i want to
delete
all Bold and formatted cells.



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Bold and formated cell wnat to delete in one stroke

Sub Cleanup()
Dim rng As Range
For Each rng In Selection
If rng.Font.Bold = True Or rng.Interior.ColorIndex _
< xlNone Then
rng.ClearContents
rng.ClearFormats
End If
Next rng
End Sub


Gord Dibben MS Excel MVP

On Wed, 10 Jan 2007 21:46:01 -0800, Qazi Ahmad
wrote:

I want to select all high lighted cells (with Bold font or cell formatted
with any color) in selected range. With one stroke. Becuase i want to delete
all Bold and formatted cells.


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
formatting a cell the same as the source cell from a lookup table hot dogs Excel Discussion (Misc queries) 2 August 24th 06 11:07 AM


All times are GMT +1. The time now is 04:45 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"