+ Reply to Thread
Results 1 to 6 of 6

Can I get rid of conditional formatting but keep format changes?

  1. #1
    Spaticus
    Guest

    Can I get rid of conditional formatting but keep format changes?

    In excel 2003 i have set up conditional formatting to change a range of cells
    fill color if it is equal to text in origonal cell. I want to get rid of the
    conditional format but keep the new fill color with out going through the
    cells one at a time and changing it manually. Is this possible?

  2. #2
    Rowan Drummond
    Guest

    Re: Can I get rid of conditional formatting but keep format changes?

    You might be able to do it with a macro e.g.

    Sub CdF()
    Dim cell As Range
    For Each cell In Range("B1:D10")
    If cell.Value = Range("A1").Value Then
    cell.Interior.ColorIndex = 36
    End If
    cell.FormatConditions.Delete
    Next cell
    End Sub


    This checks the value of each cell in the range B1:D10 and compares it
    to the value of cell A1.

    Hope this helps
    Rowan

    Spaticus wrote:
    > In excel 2003 i have set up conditional formatting to change a range of cells
    > fill color if it is equal to text in origonal cell. I want to get rid of the
    > conditional format but keep the new fill color with out going through the
    > cells one at a time and changing it manually. Is this possible?


  3. #3
    Spaticus
    Guest

    Re: Can I get rid of conditional formatting but keep format change

    Thank you for the information. I'm going to try and find out what a macro is
    now!

    "Rowan Drummond" wrote:

    > You might be able to do it with a macro e.g.
    >
    > Sub CdF()
    > Dim cell As Range
    > For Each cell In Range("B1:D10")
    > If cell.Value = Range("A1").Value Then
    > cell.Interior.ColorIndex = 36
    > End If
    > cell.FormatConditions.Delete
    > Next cell
    > End Sub
    >
    >
    > This checks the value of each cell in the range B1:D10 and compares it
    > to the value of cell A1.
    >
    > Hope this helps
    > Rowan
    >
    > Spaticus wrote:
    > > In excel 2003 i have set up conditional formatting to change a range of cells
    > > fill color if it is equal to text in origonal cell. I want to get rid of the
    > > conditional format but keep the new fill color with out going through the
    > > cells one at a time and changing it manually. Is this possible?

    >


  4. #4
    Rowan Drummond
    Guest

    Re: Can I get rid of conditional formatting but keep format change

    For an introduction to macros see:

    http://www.mvps.org/dmcritchie/excel/getstarted.htm
    http://web.archive.org/web/200312040...01/default.asp

    Regards
    Rowan

    Spaticus wrote:
    > Thank you for the information. I'm going to try and find out what a macro is
    > now!
    >
    > "Rowan Drummond" wrote:
    >
    >
    >>You might be able to do it with a macro e.g.
    >>
    >>Sub CdF()
    >> Dim cell As Range
    >> For Each cell In Range("B1:D10")
    >> If cell.Value = Range("A1").Value Then
    >> cell.Interior.ColorIndex = 36
    >> End If
    >> cell.FormatConditions.Delete
    >> Next cell
    >>End Sub
    >>
    >>
    >>This checks the value of each cell in the range B1:D10 and compares it
    >>to the value of cell A1.
    >>
    >>Hope this helps
    >>Rowan
    >>
    >>Spaticus wrote:
    >>
    >>>In excel 2003 i have set up conditional formatting to change a range of cells
    >>>fill color if it is equal to text in origonal cell. I want to get rid of the
    >>>conditional format but keep the new fill color with out going through the
    >>>cells one at a time and changing it manually. Is this possible?

    >>


  5. #5
    Therese
    Guest

    Re: Can I get rid of conditional formatting but keep format change

    Hi
    If your'e not into macros, maybe this will help:
    Go to one cell and change that with conditional formatting just the way you
    want it. Click the cell again - then the "formatting-paint-brush-icon" and
    then highlight the rows or columns that you want to change, with the
    paint-brush and...there you go.
    Hope it'll help.
    --
    Therese


    "Rowan Drummond" skrev:

    > For an introduction to macros see:
    >
    > http://www.mvps.org/dmcritchie/excel/getstarted.htm
    > http://web.archive.org/web/200312040...01/default.asp
    >
    > Regards
    > Rowan
    >
    > Spaticus wrote:
    > > Thank you for the information. I'm going to try and find out what a macro is
    > > now!
    > >
    > > "Rowan Drummond" wrote:
    > >
    > >
    > >>You might be able to do it with a macro e.g.
    > >>
    > >>Sub CdF()
    > >> Dim cell As Range
    > >> For Each cell In Range("B1:D10")
    > >> If cell.Value = Range("A1").Value Then
    > >> cell.Interior.ColorIndex = 36
    > >> End If
    > >> cell.FormatConditions.Delete
    > >> Next cell
    > >>End Sub
    > >>
    > >>
    > >>This checks the value of each cell in the range B1:D10 and compares it
    > >>to the value of cell A1.
    > >>
    > >>Hope this helps
    > >>Rowan
    > >>
    > >>Spaticus wrote:
    > >>
    > >>>In excel 2003 i have set up conditional formatting to change a range of cells
    > >>>fill color if it is equal to text in origonal cell. I want to get rid of the
    > >>>conditional format but keep the new fill color with out going through the
    > >>>cells one at a time and changing it manually. Is this possible?
    > >>

    >


  6. #6
    Spaticus
    Guest

    Re: Can I get rid of conditional formatting but keep format change

    thank you both!

    "Therese" wrote:

    > Hi
    > If your'e not into macros, maybe this will help:
    > Go to one cell and change that with conditional formatting just the way you
    > want it. Click the cell again - then the "formatting-paint-brush-icon" and
    > then highlight the rows or columns that you want to change, with the
    > paint-brush and...there you go.
    > Hope it'll help.
    > --
    > Therese
    >
    >
    > "Rowan Drummond" skrev:
    >
    > > For an introduction to macros see:
    > >
    > > http://www.mvps.org/dmcritchie/excel/getstarted.htm
    > > http://web.archive.org/web/200312040...01/default.asp
    > >
    > > Regards
    > > Rowan
    > >
    > > Spaticus wrote:
    > > > Thank you for the information. I'm going to try and find out what a macro is
    > > > now!
    > > >
    > > > "Rowan Drummond" wrote:
    > > >
    > > >
    > > >>You might be able to do it with a macro e.g.
    > > >>
    > > >>Sub CdF()
    > > >> Dim cell As Range
    > > >> For Each cell In Range("B1:D10")
    > > >> If cell.Value = Range("A1").Value Then
    > > >> cell.Interior.ColorIndex = 36
    > > >> End If
    > > >> cell.FormatConditions.Delete
    > > >> Next cell
    > > >>End Sub
    > > >>
    > > >>
    > > >>This checks the value of each cell in the range B1:D10 and compares it
    > > >>to the value of cell A1.
    > > >>
    > > >>Hope this helps
    > > >>Rowan
    > > >>
    > > >>Spaticus wrote:
    > > >>
    > > >>>In excel 2003 i have set up conditional formatting to change a range of cells
    > > >>>fill color if it is equal to text in origonal cell. I want to get rid of the
    > > >>>conditional format but keep the new fill color with out going through the
    > > >>>cells one at a time and changing it manually. Is this possible?
    > > >>

    > >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1