Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Ken Ken is offline
external usenet poster
 
Posts: 590
Default Conditional Formatting?

Excel2003 ... To turn pattern of every other row ... I am using conditional
format formula ... =mod(row(),2)=1

to change Font RED for any Cell Value ending in "P/T" ... I am using
conditional format formula ... Right(Cell,3)="P/T".

Above said ... I would like to write conditional format formula that will do
both at the same time ... Alternate Cell Pattern for every other row & Font
Pattern RED for any Cell Value ending in "P/T".

Thanks ... Kha
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default Conditional Formatting?

=AND(MOD(ROW(),2)=1,RIGHT(Cell,3)="P/T")

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Ken" wrote in message
...
Excel2003 ... To turn pattern of every other row ... I am using
conditional
format formula ... =mod(row(),2)=1

to change Font RED for any Cell Value ending in "P/T" ... I am using
conditional format formula ... Right(Cell,3)="P/T".

Above said ... I would like to write conditional format formula that will
do
both at the same time ... Alternate Cell Pattern for every other row &
Font
Pattern RED for any Cell Value ending in "P/T".

Thanks ... Kha



  #3   Report Post  
Posted to microsoft.public.excel.misc
Ken Ken is offline
external usenet poster
 
Posts: 590
Default Conditional Formatting?

Bob ... (Hi)

This is one combination I tried, but it only RED Fonts every other Row where
"P/T" might be found.

To clarify ... I need to conditional format pattern every other row ... &
RED Font Cell Values ending in "P/T" which are random (not every other row).

Above said ... I am thinking I need 2 Condition Statements (white pattern,
Red font ... Brown pattern Red Font ... but am stuck on how to write ...

Thank you for supporting these boards ... Kha



"Bob Phillips" wrote:

=AND(MOD(ROW(),2)=1,RIGHT(Cell,3)="P/T")

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Ken" wrote in message
...
Excel2003 ... To turn pattern of every other row ... I am using
conditional
format formula ... =mod(row(),2)=1

to change Font RED for any Cell Value ending in "P/T" ... I am using
conditional format formula ... Right(Cell,3)="P/T".

Above said ... I would like to write conditional format formula that will
do
both at the same time ... Alternate Cell Pattern for every other row &
Font
Pattern RED for any Cell Value ending in "P/T".

Thanks ... Kha




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default Conditional Formatting?

Change AND to OR ?
--
David Biddulph

"Ken" wrote in message
...
Bob ... (Hi)

This is one combination I tried, but it only RED Fonts every other Row
where
"P/T" might be found.

To clarify ... I need to conditional format pattern every other row ... &
RED Font Cell Values ending in "P/T" which are random (not every other
row).

Above said ... I am thinking I need 2 Condition Statements (white pattern,
Red font ... Brown pattern Red Font ... but am stuck on how to write ...

Thank you for supporting these boards ... Kha



"Bob Phillips" wrote:

=AND(MOD(ROW(),2)=1,RIGHT(Cell,3)="P/T")

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my
addy)



"Ken" wrote in message
...
Excel2003 ... To turn pattern of every other row ... I am using
conditional
format formula ... =mod(row(),2)=1

to change Font RED for any Cell Value ending in "P/T" ... I am using
conditional format formula ... Right(Cell,3)="P/T".

Above said ... I would like to write conditional format formula that
will
do
both at the same time ... Alternate Cell Pattern for every other row &
Font
Pattern RED for any Cell Value ending in "P/T".

Thanks ... Kha






  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default Conditional Formatting?

Use 3 conditions,

condition 1

=AND(MOD(ROW(),2)=1,RIGHT(Cell,3)="P/T")

with the colour pattern and the red font

condition 2

=AND(MOD(ROW(),2)=0,RIGHT(Cell,3)="P/T")

with the no colour pattern and the red font

condition 31

=MOD(ROW(),2)=1

with the colour pattern


--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Bob Phillips" wrote in message
...
=AND(MOD(ROW(),2)=1,RIGHT(Cell,3)="P/T")

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my
addy)



"Ken" wrote in message
...
Excel2003 ... To turn pattern of every other row ... I am using
conditional
format formula ... =mod(row(),2)=1

to change Font RED for any Cell Value ending in "P/T" ... I am using
conditional format formula ... Right(Cell,3)="P/T".

Above said ... I would like to write conditional format formula that will
do
both at the same time ... Alternate Cell Pattern for every other row &
Font
Pattern RED for any Cell Value ending in "P/T".

Thanks ... Kha







  #6   Report Post  
Posted to microsoft.public.excel.misc
Ken Ken is offline
external usenet poster
 
Posts: 590
Default Conditional Formatting?

Bob ... (Good morning)

Basically, this is what I did ...

Thank you very much for supporting these boards ... Kha



"Bob Phillips" wrote:

Use 3 conditions,

condition 1

=AND(MOD(ROW(),2)=1,RIGHT(Cell,3)="P/T")

with the colour pattern and the red font

condition 2

=AND(MOD(ROW(),2)=0,RIGHT(Cell,3)="P/T")

with the no colour pattern and the red font

condition 31

=MOD(ROW(),2)=1

with the colour pattern


--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Bob Phillips" wrote in message
...
=AND(MOD(ROW(),2)=1,RIGHT(Cell,3)="P/T")

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my
addy)



"Ken" wrote in message
...
Excel2003 ... To turn pattern of every other row ... I am using
conditional
format formula ... =mod(row(),2)=1

to change Font RED for any Cell Value ending in "P/T" ... I am using
conditional format formula ... Right(Cell,3)="P/T".

Above said ... I would like to write conditional format formula that will
do
both at the same time ... Alternate Cell Pattern for every other row &
Font
Pattern RED for any Cell Value ending in "P/T".

Thanks ... Kha






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
Protect Cell Formatting including Conditional Formatting Mick Jennings Excel Discussion (Misc queries) 5 November 13th 07 05:32 PM
conditional Formatting based on cell formatting Totom Excel Worksheet Functions 3 January 20th 07 02:02 PM
conditional Formatting based on cell formatting Totom Excel Worksheet Functions 0 January 15th 07 04:35 PM
Conditional Formatting Una Excel Worksheet Functions 4 December 14th 06 02:46 PM
Conditional Formatting that will display conditional data BrainFart Excel Worksheet Functions 1 September 13th 05 05:45 PM


All times are GMT +1. The time now is 11:44 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"