ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Input color and formula color (https://www.excelbanter.com/excel-discussion-misc-queries/110743-input-color-formula-color.html)

Sunnyskies

Input color and formula color
 
Is it possible that on a spreadsheet, whenever you have cell with a formula
in it, the font color is black and if you have another cell where it is a
simple input field the cell font color is blue.

I do want to goto each cell and select black or blue. I do not want to use
conditional formating.

Is there not a format function or something that will allow this feature to
work on a spreadsheet.

Thanks

Carlo

Input color and formula color
 
you could do it with VBA!

for each cell_ in activesheet.cells
if left(cell_.formular1c1,1) = "=" then
cell_.interior.colorindex = 1 '== change to whatever you want
else
cell_.interior.colorindex = 2 '== change to whatever you want
end if
next cell_

if you don't want to go through the whole sheet you can also
define a range. It's up to you.

hth

Cheers Carlo

"Sunnyskies" wrote:

Is it possible that on a spreadsheet, whenever you have cell with a formula
in it, the font color is black and if you have another cell where it is a
simple input field the cell font color is blue.

I do want to goto each cell and select black or blue. I do not want to use
conditional formating.

Is there not a format function or something that will allow this feature to
work on a spreadsheet.

Thanks


Dave Peterson

Input color and formula color
 
Instead of checking

If left(cell_.formular1c1,1) = "=" then

It would be better to use:

If cell_.hasformula then


Carlo wrote:

you could do it with VBA!

for each cell_ in activesheet.cells
if left(cell_.formular1c1,1) = "=" then
cell_.interior.colorindex = 1 '== change to whatever you want
else
cell_.interior.colorindex = 2 '== change to whatever you want
end if
next cell_

if you don't want to go through the whole sheet you can also
define a range. It's up to you.

hth

Cheers Carlo

"Sunnyskies" wrote:

Is it possible that on a spreadsheet, whenever you have cell with a formula
in it, the font color is black and if you have another cell where it is a
simple input field the cell font color is blue.

I do want to goto each cell and select black or blue. I do not want to use
conditional formating.

Is there not a format function or something that will allow this feature to
work on a spreadsheet.

Thanks


--

Dave Peterson

Dave Peterson

Input color and formula color
 
You could select the range (all the cells??)
Edit|Goto|special|check formulas
and click ok
And format them the way you want.

Then do the same thing for the constants.

This will be a manual effort and won't change colors if you add a formula or a
constant.

Sunnyskies wrote:

Is it possible that on a spreadsheet, whenever you have cell with a formula
in it, the font color is black and if you have another cell where it is a
simple input field the cell font color is blue.

I do want to goto each cell and select black or blue. I do not want to use
conditional formating.

Is there not a format function or something that will allow this feature to
work on a spreadsheet.

Thanks


--

Dave Peterson

Carlo

Input color and formula color
 
Yeah, you're right!
Was a code-quickie.

Thx for the correction, always eager
to learn some new things.

"Dave Peterson" wrote:

Instead of checking

If left(cell_.formular1c1,1) = "=" then

It would be better to use:

If cell_.hasformula then


Carlo wrote:

you could do it with VBA!

for each cell_ in activesheet.cells
if left(cell_.formular1c1,1) = "=" then
cell_.interior.colorindex = 1 '== change to whatever you want
else
cell_.interior.colorindex = 2 '== change to whatever you want
end if
next cell_

if you don't want to go through the whole sheet you can also
define a range. It's up to you.

hth

Cheers Carlo

"Sunnyskies" wrote:

Is it possible that on a spreadsheet, whenever you have cell with a formula
in it, the font color is black and if you have another cell where it is a
simple input field the cell font color is blue.

I do want to goto each cell and select black or blue. I do not want to use
conditional formating.

Is there not a format function or something that will allow this feature to
work on a spreadsheet.

Thanks


--

Dave Peterson


Gord Dibben

Input color and formula color
 
CF would be the best way to go to avoid the manual effort and would update when
formulas are added or removed.

What is your objection to CF?


Gord Dibben MS Excel MVP

On Wed, 20 Sep 2006 07:46:08 -0500, Dave Peterson
wrote:

You could select the range (all the cells??)
Edit|Goto|special|check formulas
and click ok
And format them the way you want.

Then do the same thing for the constants.

This will be a manual effort and won't change colors if you add a formula or a
constant.

Sunnyskies wrote:

Is it possible that on a spreadsheet, whenever you have cell with a formula
in it, the font color is black and if you have another cell where it is a
simple input field the cell font color is blue.

I do want to goto each cell and select black or blue. I do not want to use
conditional formating.

Is there not a format function or something that will allow this feature to
work on a spreadsheet.

Thanks




All times are GMT +1. The time now is 10:42 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com