Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Format to Value

I have an excel spreadsheet that has many columns filled black. It
looks great, but I need to replace the formatting with an actual
value, These squares are black with no value in them. Is there some
way to add a value to all squares that are black? Thanks,

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,117
Default Format to Value

use white text.
black text in black cells will be invisible.
hth
susan

On Apr 9, 9:01 am, wrote:
I have an excel spreadsheet that has many columns filled black. It
looks great, but I need to replace the formatting with an actual
value, These squares are black with no value in them. Is there some
way to add a value to all squares that are black? Thanks,



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 96
Default Format to Value

Try this procedure.

Sub FilledBlack()
Dim R As Range, ER As Range
Set ER = ThisWorkbook.Worksheets("Sheet1").Range("A1:F10000 ")
For Each R In ER.Cells
If R.Interior.ColorIndex = 1 Then
R.Value = "Your Value"
End If
Next R
End Sub

Substitute whatever the range you want to check for "A1:F10000"
ColorIndex = 1 checks to see if the cell is filled black.
This will enter the value "Your Value" in all cells that are filled black.

Hope this gets you started.

Bill

" wrote:

I have an excel spreadsheet that has many columns filled black. It
looks great, but I need to replace the formatting with an actual
value, These squares are black with no value in them. Is there some
way to add a value to all squares that are black? Thanks,


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Format to Value

On Apr 9, 8:42 am, William Horton
wrote:
Try this procedure.

Sub FilledBlack()
Dim R As Range, ER As Range
Set ER = ThisWorkbook.Worksheets("Sheet1").Range("A1:F10000 ")
For Each R In ER.Cells
If R.Interior.ColorIndex = 1 Then
R.Value = "Your Value"
End If
Next R
End Sub

Substitute whatever the range you want to check for "A1:F10000"
ColorIndex = 1 checks to see if the cell is filled black.
This will enter the value "Your Value" in all cells that are filled black.

Hope this gets you started.

Bill



" wrote:
I have an excel spreadsheet that has many columns filled black. It
looks great, but I need to replace the formatting with an actual
value, These squares are black with no value in them. Is there some
way to add a value to all squares that are black? Thanks,- Hide quoted text -


- Show quoted text -


Thanks so much! You just saved me a whole day's worth of manual
editing! I knew there had to be a way to reference the formatting.--
Steve

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
Adding time in 24 hour format to produce hours in decimal format Hercdriver Excel Worksheet Functions 11 December 29th 09 02:06 AM
Need help with converting CUSTOM format/TEXT format to DATE format Deo Cleto Excel Worksheet Functions 6 June 2nd 09 08:14 PM
Replace million-billion number format to lakhs-crores format Sumit Excel Discussion (Misc queries) 1 December 9th 05 04:58 PM
how to format excel format to text format with separator "|" in s. azlan New Users to Excel 1 January 31st 05 12:57 PM
Keep format after paste from other worksheets - conditional format or EnableControl solution doesn't work No Name Excel Programming 0 May 3rd 04 12:22 PM


All times are GMT +1. The time now is 11:19 AM.

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

About Us

"It's about Microsoft Excel"