Welcome to Windows Help!
FAQFAQ    SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

copy conditional formats

 
Goto page 1, 2
   Windows Help (Home) -> Microsoft Excel RSS
Next:  can we navigate powerpoint using bluetooth mobile  
Author Message
Bill Roberts

External


Since: Feb 8, 2009
Posts: 11



(Msg. 1) Posted: Fri Nov 20, 2009 2:29 pm
Post subject: copy conditional formats
Archived from groups: microsoft>public>excel (more info?)

I have a column that has been conditionally formatted with equations, using
the "fill" command to color the cells based on the relative values of cells
in other columns. I want to copy only the colors to another column, but not
the equations. As if I would do a copy/paste special/values, but the
conditionally formatting equations refuse to go away. I just want only the
color patterns in the new column. Would appreciate any suggestions. TIA
Bill Roberts

 >> Stay informed about: copy conditional formats 
Back to top
Login to vote
ebloch

External


Since: Dec 7, 2008
Posts: 2



(Msg. 2) Posted: Sat Nov 21, 2009 1:38 pm
Post subject: Re: copy conditional formats
Archived from groups: per prev. post (more info?)

free ASAP Utilities can do this.

See Format - "Copy and Apply Cell's Formatting Settings


"Bill Roberts" wrote in message

>I have a column that has been conditionally formatted with equations, using
> the "fill" command to color the cells based on the relative values of
> cells
> in other columns. I want to copy only the colors to another column, but
> not
> the equations. As if I would do a copy/paste special/values, but the
> conditionally formatting equations refuse to go away. I just want only
> the
> color patterns in the new column. Would appreciate any suggestions. TIA
> Bill Roberts

 >> Stay informed about: copy conditional formats 
Back to top
Login to vote
Bernie Deitrick

External


Since: Dec 17, 2008
Posts: 10



(Msg. 3) Posted: Sat Nov 21, 2009 2:06 pm
Post subject: Re: copy conditional formats
Archived from groups: per prev. post (more info?)

Bill,

It would require a macro. See below, and run the macro CopyCFFormats,
selecting the ranges as appropriate. As written, the code will transfer
Bold and background color - but you can add as many formatting properties as
your situation requires.


HTH,
Bernie
MS Excel MVP


Sub CopyCFFormats()
Dim R1 As Range
Dim R2 As Range
Dim i As Integer
Dim j As Integer

Dim m As Range
Dim myRet As Variant

Set R1 = Application.InputBox("Select the CF'd range", Type:=Cool
Set R2 = Application.InputBox("Select the final range", Type:=Cool

If R1.Cells.Count wrote in message

>I have a column that has been conditionally formatted with equations, using
> the "fill" command to color the cells based on the relative values of
> cells
> in other columns. I want to copy only the colors to another column, but
> not
> the equations. As if I would do a copy/paste special/values, but the
> conditionally formatting equations refuse to go away. I just want only
> the
> color patterns in the new column. Would appreciate any suggestions. TIA
> Bill Roberts
 >> Stay informed about: copy conditional formats 
Back to top
Login to vote
Bill Roberts

External


Since: Feb 8, 2009
Posts: 11



(Msg. 4) Posted: Sun Nov 22, 2009 12:04 pm
Post subject: Re: copy conditional formats
Archived from groups: per prev. post (more info?)

Thank you Bernie. I assumed it would be something like that.
When I try to step through the macro, I get the error message regarding
"CheckFormat(R1.Cells(i,j)".... " Compile error: Sub or Function not
defined". I can't find any references to "CheckFormat". Do I need to write
another function? I am using Excel 2007. Thanks
 >> Stay informed about: copy conditional formats 
Back to top
Login to vote
Gord Dibben

External


Since: Oct 17, 2008
Posts: 21



(Msg. 5) Posted: Sun Nov 22, 2009 12:16 pm
Post subject: Re: copy conditional formats
Archived from groups: per prev. post (more info?)

Bernie provided the CheckFormat function in his post.

> Function CheckFormat(c As Range) As Variant
rest of code
>End Function

Did you copy it and the macro to a general module?


Gord Dibben MS Excel MVP

On Sun, 22 Nov 2009 12:04:04 -0800, Bill Roberts
wrote:

>Thank you Bernie. I assumed it would be something like that.
>When I try to step through the macro, I get the error message regarding
>"CheckFormat(R1.Cells(i,j)".... " Compile error: Sub or Function not
>defined". I can't find any references to "CheckFormat". Do I need to write
>another function? I am using Excel 2007. Thanks
 >> Stay informed about: copy conditional formats 
Back to top
Login to vote
Bill Roberts

External


Since: Feb 8, 2009
Posts: 11



(Msg. 6) Posted: Sun Nov 22, 2009 2:36 pm
Post subject: Re: copy conditional formats
Archived from groups: per prev. post (more info?)

I am really dumb. I saw the "end sub" on Bernie's post and proceeded to copy
everything down through "end sub". Maybe someday I'll learn to use the blue
bar on the right side. Sorry for the unnecessary question.
 >> Stay informed about: copy conditional formats 
Back to top
Login to vote
Bill Roberts

External


Since: Feb 8, 2009
Posts: 11



(Msg. 7) Posted: Mon Nov 30, 2009 3:49 pm
Post subject: Re: copy conditional formats
Archived from groups: per prev. post (more info?)

I have tried a lot of options, but I cannot get Bernie’s code to run. I set
up a small spreadsheet: columns A and B have numbers, Column C is
conditionally formatted (Filled) to the relative values in columns A and B,
and the font is Conditionally formatted to bold if the number in Column C is
negative. I have 10 rows. The primary function Compile error (when I try to
run the code attached, hopefully identical to Bernie’s code) is “Case without
Select Case”. There must be something wrong with the statement
“Select Case c.FormatConditions.Item(i).Operator”. I would appreciate any
help or references.
Option Explicit
Dim R1 As Range
Dim R2 As Range
Dim i As Integer
Dim j As Integer
Dim m As Range
Dim myret As Variant
Sub copycfformats()
Set R1 = Application.InputBox("Select the CF'd range", Type:=Cool
Set R2 = Application.InputBox("Select the final range", Type:=Cool
If R1.Cells.Count <> R2.Cells.Count Or R1.Rows.Count <> R2.Rows.Count Then
MsgBox "You must select ranges of equal size and shape"
End If
For i = 1 To R1.Rows.Count
For j = 1 To R1.Columns.Count
myret = CheckFormat(R1.Cells(i, j))
If myret = False Then GoTo NoCF
If myret = "None" Then GoTo NoCF
R2.Cells(i, j).Interior.colorindex = _
R1.Cells(i, j).FormatConditions(myret).Interior.colorindex
R2.Cells(i, j).Font.Bold = _
R1.Cells(i, j).FormatConditions(myret).Font.Bold
NoCF:
Next j
Next i
End Sub
Function CheckFormat(c As Range) As Variant
Dim bCheck As Boolean
If c.FormatConditions.Count = 0 Then
CheckFormat = False
Exit Function
End If
For i = 1 To c.FormatConditions.Count
If c.FormatConditions.Item(i).Type = 1 Then
bCheck = False
'This command seems to be the compile error
Select Case c.FormatConditions.Item(i).Operator

Case xlBetween
If (c.Value >= CDbl(c.FormatConditions.Item(i).Formula1)) And _
(c.Value <= CDbl(c.FormatConditions.Item(i).Formula2)) Then
bCheck = True

Case xlNotBetween
If c.Value < CDbl(c.FormatConditions.Item(i).Formula1) Or _
c.Value > CDbl(c.FormatConditions.Item(i).Formula2) Then
bCheck = True

Case xlEqual
If c.Value = CDbl(c.FormatConditions.Item(i).Formula1) Then
bCheck = True

Case xlNotEqual
If c.Value <> CDbl(c.FormatConditions.Item(i).Formula1) Then
bCheck = True

Case xlGreater
If c.Value > CDbl(c.FormatConditions.Item(i).Formula1) Then
bCheck = True

Case xlLess
If c.Value < CDbl(c.FormatConditions.Item(i).Formula1) Then
bCheck = True

Case xlGreaterEqual
If c.Value >= CDbl(c.FormatConditions.Item(i).Formula1) Then
bCheck = True

Case xlLessEqual
If c.Value <= CDbl(c.FormatConditions.Item(i).Formula1) Then
bCheck = True
End Select
If bCheck = True Then
CheckFormat = i
bCheck = False
Exit Function
End If
End If
Next i
CheckFormat = "None"
End Function
 >> Stay informed about: copy conditional formats 
Back to top
Login to vote
Bernie Deitrick

External


Since: Dec 17, 2008
Posts: 10



(Msg. 8) Posted: Mon Nov 30, 2009 7:38 pm
Post subject: Re: copy conditional formats
Archived from groups: per prev. post (more info?)

Bill,

Every one of your "Then's" needs to be followed by a space and an
underscore (the continuation character).

For example:

Case xlLess
If c.Value < CDbl(c.FormatConditions.Item(i).Formula1) Then
bCheck = True

Should be

Case xlLess
If c.Value < CDbl(c.FormatConditions.Item(i).Formula1) Then _
bCheck = True


Other wise, you could use

Case xlLess
If c.Value < CDbl(c.FormatConditions.Item(i).Formula1) Then
bCheck = True
End If

But you need to do that for every one...

Bernie


> Select Case c.FormatConditions.Item(i).Operator
>
> Case xlBetween
> If (c.Value >= CDbl(c.FormatConditions.Item(i).Formula1)) And _
> (c.Value <= CDbl(c.FormatConditions.Item(i).Formula2)) Then
> bCheck = True
>
> Case xlNotBetween
> If c.Value < CDbl(c.FormatConditions.Item(i).Formula1) Or _
> c.Value > CDbl(c.FormatConditions.Item(i).Formula2) Then
> bCheck = True
>
> Case xlEqual
> If c.Value = CDbl(c.FormatConditions.Item(i).Formula1) Then
> bCheck = True
>
> Case xlNotEqual
> If c.Value <> CDbl(c.FormatConditions.Item(i).Formula1) Then
> bCheck = True
>
> Case xlGreater
> If c.Value > CDbl(c.FormatConditions.Item(i).Formula1) Then
> bCheck = True
>
> Case xlLess
> If c.Value < CDbl(c.FormatConditions.Item(i).Formula1) Then
> bCheck = True
>
> Case xlGreaterEqual
> If c.Value >= CDbl(c.FormatConditions.Item(i).Formula1) Then
> bCheck = True

>> > Case 1 ' between
>> > If (c.Value >= CDbl(c.FormatConditions.Item(i).Formula1)) And _
>> > (c.Value <= CDbl(c.FormatConditions.Item(i).Formula2)) Then _
>> > bCheck = True
>> >
>> > Case 2 ' not between
>> > If c.Value < CDbl(c.FormatConditions.Item(i).Formula1) Or _
>> > c.Value > CDbl(c.FormatConditions.Item(i).Formula2) Then _
>> > bCheck = True
>> >
>> > Case 3 ' equal to
>> > If c.Value = CDbl(c.FormatConditions.Item(i).Formula1) Then _
>> > bCheck = True
>> >
>> > Case 4 ' not equal to
>> > If c.Value <> CDbl(c.FormatConditions.Item(i).Formula1) Then _
>> > bCheck = True
>> >
>> > Case 5 ' greater then
>> > If c.Value > CDbl(c.FormatConditions.Item(i).Formula1) Then _
>> > bCheck = True
>> >
>> > Case 6 ' less then
>> > If c.Value < CDbl(c.FormatConditions.Item(i).Formula1) Then _
>> > bCheck = True
>> >
>> > Case 7 ' greater & equal then
>> > If c.Value >= CDbl(c.FormatConditions.Item(i).Formula1) Then _
>> > bCheck = True
>> >
>> > Case 8 ' less & equal then
>> > If c.Value <= CDbl(c.FormatConditions.Item(i).Formula1) Then _
>> > bCheck = True
 >> Stay informed about: copy conditional formats 
Back to top
Login to vote
Bill Roberts

External


Since: Feb 8, 2009
Posts: 11



(Msg. 9) Posted: Mon Nov 30, 2009 10:12 pm
Post subject: Re: copy conditional formats
Archived from groups: per prev. post (more info?)

Thanks very much. That eliminates the “Select Case” error. Now here is what
I get. If I leave the line “If c.FormatConditions.Item(i).Type=1, the code
never gets to the “Select Case” line. It just jumps to the bottom “End If”.
If I change the line to “c.FormatConditions.Item(i).Type=2”, then it sets
bcheck=False and when I step through the “Select Case
c.FormatConditions.Item(i).Operator”, I get the error code “Application
defined or object defined error”. I have studied the “Item(i)”, “.Operator”
and “.Type” Methods, etc. in VBA help, but I can’t figure out what the line
should be. Please help.
 >> Stay informed about: copy conditional formats 
Back to top
Login to vote
Bill Roberts

External


Since: Feb 8, 2009
Posts: 11



(Msg. 10) Posted: Tue Dec 01, 2009 9:23 am
Post subject: RE: copy conditional formats
Archived from groups: per prev. post (more info?)

Bernie, I can't do it today, but I will follow your suggestion and post a
reply on Wednesday. Thanks
 >> Stay informed about: copy conditional formats 
Back to top
Login to vote
Bernie Deitrick

External


Since: Dec 17, 2008
Posts: 10



(Msg. 11) Posted: Tue Dec 01, 2009 10:23 am
Post subject: Re: copy conditional formats
Archived from groups: per prev. post (more info?)

Bill,

What are the values that the cell can have? What CF are you actually using?

It would help if you select one of the cells with the CF that you want, and start the macro
recorder. Make a minor change to one condition of the CF and then stop the recorder. (You can then
change the CF back.)

Post that code when you are done.

HTH,
Bernie
MS Excel MVP


"Bill Roberts" wrote in message

> Thanks very much. That eliminates the "Select Case" error. Now here is what
> I get. If I leave the line "If c.FormatConditions.Item(i).Type=1, the code
> never gets to the "Select Case" line. It just jumps to the bottom "End If".
> If I change the line to "c.FormatConditions.Item(i).Type=2", then it sets
> bcheck=False and when I step through the "Select Case
> c.FormatConditions.Item(i).Operator", I get the error code "Application
> defined or object defined error". I have studied the "Item(i)", ".Operator"
> and ".Type" Methods, etc. in VBA help, but I can't figure out what the line
> should be. Please help.
> --
> Bill Roberts
>
>
> "Bernie Deitrick" wrote:
>
>> Bill,
>>
>> Every one of your "Then's" needs to be followed by a space and an
>> underscore (the continuation character).
>>
>> For example:
>>
>> Case xlLess
>> If c.Value < CDbl(c.FormatConditions.Item(i).Formula1) Then
>> bCheck = True
>>
>> Should be
>>
>> Case xlLess
>> If c.Value < CDbl(c.FormatConditions.Item(i).Formula1) Then _
>> bCheck = True
>>
>>
>> Other wise, you could use
>>
>> Case xlLess
>> If c.Value < CDbl(c.FormatConditions.Item(i).Formula1) Then
>> bCheck = True
>> End If
>>
>> But you need to do that for every one...
>>
>> Bernie
>>
>>
>> > Select Case c.FormatConditions.Item(i).Operator
>> >
>> > Case xlBetween
>> > If (c.Value >= CDbl(c.FormatConditions.Item(i).Formula1)) And _
>> > (c.Value <= CDbl(c.FormatConditions.Item(i).Formula2)) Then
>> > bCheck = True
>> >
>> > Case xlNotBetween
>> > If c.Value < CDbl(c.FormatConditions.Item(i).Formula1) Or _
>> > c.Value > CDbl(c.FormatConditions.Item(i).Formula2) Then
>> > bCheck = True
>> >
>> > Case xlEqual
>> > If c.Value = CDbl(c.FormatConditions.Item(i).Formula1) Then
>> > bCheck = True
>> >
>> > Case xlNotEqual
>> > If c.Value <> CDbl(c.FormatConditions.Item(i).Formula1) Then
>> > bCheck = True
>> >
>> > Case xlGreater
>> > If c.Value > CDbl(c.FormatConditions.Item(i).Formula1) Then
>> > bCheck = True
>> >
>> > Case xlLess
>> > If c.Value < CDbl(c.FormatConditions.Item(i).Formula1) Then
>> > bCheck = True
>> >
>> > Case xlGreaterEqual
>> > If c.Value >= CDbl(c.FormatConditions.Item(i).Formula1) Then
>> > bCheck = True
>>
>> >> > Case 1 ' between
>> >> > If (c.Value >= CDbl(c.FormatConditions.Item(i).Formula1)) And _
>> >> > (c.Value <= CDbl(c.FormatConditions.Item(i).Formula2)) Then _
>> >> > bCheck = True
>> >> >
>> >> > Case 2 ' not between
>> >> > If c.Value < CDbl(c.FormatConditions.Item(i).Formula1) Or _
>> >> > c.Value > CDbl(c.FormatConditions.Item(i).Formula2) Then _
>> >> > bCheck = True
>> >> >
>> >> > Case 3 ' equal to
>> >> > If c.Value = CDbl(c.FormatConditions.Item(i).Formula1) Then _
>> >> > bCheck = True
>> >> >
>> >> > Case 4 ' not equal to
>> >> > If c.Value <> CDbl(c.FormatConditions.Item(i).Formula1) Then _
>> >> > bCheck = True
>> >> >
>> >> > Case 5 ' greater then
>> >> > If c.Value > CDbl(c.FormatConditions.Item(i).Formula1) Then _
>> >> > bCheck = True
>> >> >
>> >> > Case 6 ' less then
>> >> > If c.Value < CDbl(c.FormatConditions.Item(i).Formula1) Then _
>> >> > bCheck = True
>> >> >
>> >> > Case 7 ' greater & equal then
>> >> > If c.Value >= CDbl(c.FormatConditions.Item(i).Formula1) Then _
>> >> > bCheck = True
>> >> >
>> >> > Case 8 ' less & equal then
>> >> > If c.Value <= CDbl(c.FormatConditions.Item(i).Formula1) Then _
>> >> > bCheck = True
>>
>> .
>>
 >> Stay informed about: copy conditional formats 
Back to top
Login to vote
Bill Roberts

External


Since: Feb 8, 2009
Posts: 11



(Msg. 12) Posted: Wed Dec 02, 2009 9:09 pm
Post subject: RE: copy conditional formats
Archived from groups: per prev. post (more info?)

Bernie, here is the code as recorded. I created a macro with the same steps
as I conditionally formatted the column. I did not do it one cell at a time
with a “for….each” statement. Would that be better?? Hope this helps.
Sub Macro1()
Range("C1:C10").Select
Selection.FormatConditions.Add Type:=xlExpression, Formula1:="=A1>B1"

Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
With Selection.FormatConditions(1).Interior
.PatternColorIndex = xlAutomatic
.Color = 5296274
.TintAndShade = 0
End With
Selection.FormatConditions(1).StopIfTrue = False
Selection.FormatConditions.Add Type:=xlExpression, Formula1:="=C1<0"

Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
With Selection.FormatConditions(1).Font
.Bold = True
.Italic = False
.TintAndShade = 0
End With
Selection.FormatConditions(1).StopIfTrue = False
End Sub
 >> Stay informed about: copy conditional formats 
Back to top
Login to vote
Bernie Deitrick

External


Since: Dec 17, 2008
Posts: 10



(Msg. 13) Posted: Thu Dec 03, 2009 1:56 pm
Post subject: Re: copy conditional formats
Archived from groups: per prev. post (more info?)

Bill,

The code will only work if you are not using the Formula is... option.

HTH,
Bernie
MS Excel MVP


"Bill Roberts" wrote in message

> Bernie, here is the code as recorded. I created a macro with the same steps
> as I conditionally formatted the column. I did not do it one cell at a time
> with a "for..each" statement. Would that be better?? Hope this helps.
> Sub Macro1()
> Range("C1:C10").Select
> Selection.FormatConditions.Add Type:=xlExpression, Formula1:="=A1>B1"
>
> Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
> With Selection.FormatConditions(1).Interior
> .PatternColorIndex = xlAutomatic
> .Color = 5296274
> .TintAndShade = 0
> End With
> Selection.FormatConditions(1).StopIfTrue = False
> Selection.FormatConditions.Add Type:=xlExpression, Formula1:="=C1<0"
>
> Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
> With Selection.FormatConditions(1).Font
> .Bold = True
> .Italic = False
> .TintAndShade = 0
> End With
> Selection.FormatConditions(1).StopIfTrue = False
> End Sub
>
> --
> Bill Roberts
>
>
> "Bill Roberts" wrote:
>
>> Bernie, I can't do it today, but I will follow your suggestion and post a
>> reply on Wednesday. Thanks
>> --
>> Bill Roberts
>>
>>
>> "Bill Roberts" wrote:
>>
>> > I have a column that has been conditionally formatted with equations, using
>> > the "fill" command to color the cells based on the relative values of cells
>> > in other columns. I want to copy only the colors to another column, but not
>> > the equations. As if I would do a copy/paste special/values, but the
>> > conditionally formatting equations refuse to go away. I just want only the
>> > color patterns in the new column. Would appreciate any suggestions. TIA
>> > Bill Roberts
 >> Stay informed about: copy conditional formats 
Back to top
Login to vote
Bernie Deitrick

External


Since: Dec 17, 2008
Posts: 10



(Msg. 14) Posted: Thu Dec 03, 2009 2:07 pm
Post subject: Re: copy conditional formats
Archived from groups: per prev. post (more info?)

Bill,

Below is code that will work with the Formula is.. option. If you are only using Formula Is.. then
you can cut out a lot of the code. Note that the code now must select the cell with the CF to
properly evaluate the formulas, since Excel uses the activecell as the basis for the relative cell
locations in the CF formulas.

HTH,
Bernie
MS Excel MVP

Sub CopyCFFormats()
Dim R1 As Range
Dim R2 As Range
Dim i As Integer
Dim j As Integer
Dim Sel As Range

Set Sel = Selection

Dim m As Range
Dim myRet As Variant

Set R1 = Application.InputBox("Select the CF'd range", Type:=Cool
Set R2 = Application.InputBox("Select the final range", Type:=Cool

If R1.Cells.Count wrote in message

> Bill,
>
> The code will only work if you are not using the Formula is... option.
>
> HTH,
> Bernie
> MS Excel MVP
>
>
> "Bill Roberts" wrote in message
>
>> Bernie, here is the code as recorded. I created a macro with the same steps
>> as I conditionally formatted the column. I did not do it one cell at a time
>> with a "for..each" statement. Would that be better?? Hope this helps.
>> Sub Macro1()
>> Range("C1:C10").Select
>> Selection.FormatConditions.Add Type:=xlExpression, Formula1:="=A1>B1"
>>
>> Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
>> With Selection.FormatConditions(1).Interior
>> .PatternColorIndex = xlAutomatic
>> .Color = 5296274
>> .TintAndShade = 0
>> End With
>> Selection.FormatConditions(1).StopIfTrue = False
>> Selection.FormatConditions.Add Type:=xlExpression, Formula1:="=C1<0"
>>
>> Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
>> With Selection.FormatConditions(1).Font
>> .Bold = True
>> .Italic = False
>> .TintAndShade = 0
>> End With
>> Selection.FormatConditions(1).StopIfTrue = False
>> End Sub
>>
>> --
>> Bill Roberts
>>
>>
>> "Bill Roberts" wrote:
>>
>>> Bernie, I can't do it today, but I will follow your suggestion and post a
>>> reply on Wednesday. Thanks
>>> --
>>> Bill Roberts
>>>
>>>
>>> "Bill Roberts" wrote:
>>>
>>> > I have a column that has been conditionally formatted with equations, using
>>> > the "fill" command to color the cells based on the relative values of cells
>>> > in other columns. I want to copy only the colors to another column, but not
>>> > the equations. As if I would do a copy/paste special/values, but the
>>> > conditionally formatting equations refuse to go away. I just want only the
>>> > color patterns in the new column. Would appreciate any suggestions. TIA
>>> > Bill Roberts
>
>
 >> Stay informed about: copy conditional formats 
Back to top
Login to vote
Bill Roberts

External


Since: Feb 8, 2009
Posts: 11



(Msg. 15) Posted: Thu Dec 03, 2009 5:11 pm
Post subject: Re: copy conditional formats
Archived from groups: per prev. post (more info?)

Thank you Bernie. I will give it a go, probably on Saturday. Thanks
 >> Stay informed about: copy conditional formats 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Conditional formatting - I want to change font when a cell takes a certain value from a formula, but in the conditional formatting box the font selection is ghosted out. Any tips on how I can do this?

Conditional Formating - I have an Excel spreadsheet that has C3=4, C4=3, & C5=2 and I want to do contitional formating for another cell to have an arrow showing a direction based on C3 - C5 (e.g., if B3>C3 arrow up, if B3=C4 nothing, if B3<C5 arrow down). Is there...

Conditional formatting - I seem to have problems writing formulas for conditional formatting. H J K 5 98 103 I want to write a rule such that if K117 is greater than j117 and also if H 117>0, then the cell turns yellow or whatever. Can't get it to work. Thanks

copy/paste macro - I am trying to create a macro that will copy a range of data; however, the number of rows to copy will vary each time the macro is run. Is there a way that I could creat parameter fields that the macro cuold read? Thanks, Micki

Copy cells with value 0 as a list - Hi, I have a sheet with some cells with value 0 and others with data. I want a macro that copies all the cells with value <>0 in other sheet but as a list, one under the other. Is this possible? Thanks!
   Windows Help (Home) -> Microsoft Excel All times are: Pacific Time (US & Canada)
Goto page 1, 2
Page 1 of 2

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]