Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 46
Default conditional formatting - repeat formula

Hello,

I am trying to perform a basic (!!) task which involves a table where the
lowest figure requires to be highlighted.

I used the formula in conditional formatting "cell value" "equals"
"min$F$3:$H$3"

This works fine, but, my table has already been created and i want to
continue this to row 50.

How can I do this without having to conditional format every 3 cells??

I am using both xp & 07 office (if this helps)

Thanks

Aaron

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default conditional formatting - repeat formula

Select the cells, I assume starting at A1, and use a formula of

=AND(A1=MIN($F3:$H3),MOD(ROW(A1),3)=0)

--
---
HTH

Bob


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



"Aaron Hodson (Coversure)" wrote in message
...
Hello,

I am trying to perform a basic (!!) task which involves a table where the
lowest figure requires to be highlighted.

I used the formula in conditional formatting "cell value" "equals"
"min$F$3:$H$3"

This works fine, but, my table has already been created and i want to
continue this to row 50.

How can I do this without having to conditional format every 3 cells??

I am using both xp & 07 office (if this helps)

Thanks

Aaron



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 46
Default conditional formatting - repeat formula

Cannot get this to work...

To explain in a little more detail, my table ranged from A1 to O50.

Data from F3:H3 to F50:H50 is required for formatting.

I need the lowest figure being highlighted out of F3,G3,H3
Then again out of F4,G4,H4
etc down to row 50.

Thanks

Aaron

"Bob Phillips" wrote in message
...
Select the cells, I assume starting at A1, and use a formula of

=AND(A1=MIN($F3:$H3),MOD(ROW(A1),3)=0)

--
---
HTH

Bob


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



"Aaron Hodson (Coversure)" wrote in message
...
Hello,

I am trying to perform a basic (!!) task which involves a table where the
lowest figure requires to be highlighted.

I used the formula in conditional formatting "cell value" "equals"
"min$F$3:$H$3"

This works fine, but, my table has already been created and i want to
continue this to row 50.

How can I do this without having to conditional format every 3 cells??

I am using both xp & 07 office (if this helps)

Thanks

Aaron




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default conditional formatting - repeat formula

That works fine for me with that range.

Select A1:O50 and apply the CF.

--
---
HTH

Bob


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



"Aaron Hodson (Coversure)" wrote in message
...
Cannot get this to work...

To explain in a little more detail, my table ranged from A1 to O50.

Data from F3:H3 to F50:H50 is required for formatting.

I need the lowest figure being highlighted out of F3,G3,H3
Then again out of F4,G4,H4
etc down to row 50.

Thanks

Aaron

"Bob Phillips" wrote in message
...
Select the cells, I assume starting at A1, and use a formula of

=AND(A1=MIN($F3:$H3),MOD(ROW(A1),3)=0)

--
---
HTH

Bob


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



"Aaron Hodson (Coversure)" wrote in message
...
Hello,

I am trying to perform a basic (!!) task which involves a table where
the lowest figure requires to be highlighted.

I used the formula in conditional formatting "cell value" "equals"
"min$F$3:$H$3"

This works fine, but, my table has already been created and i want to
continue this to row 50.

How can I do this without having to conditional format every 3 cells??

I am using both xp & 07 office (if this helps)

Thanks

Aaron






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 46
Default conditional formatting - repeat formula

Sorry,
still can't get this working....
Can i send it across to you?
is it maybe becuae i am working in office 2007 compat mode?

"Bob Phillips" wrote in message
...
That works fine for me with that range.

Select A1:O50 and apply the CF.

--
---
HTH

Bob


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



"Aaron Hodson (Coversure)" wrote in message
...
Cannot get this to work...

To explain in a little more detail, my table ranged from A1 to O50.

Data from F3:H3 to F50:H50 is required for formatting.

I need the lowest figure being highlighted out of F3,G3,H3
Then again out of F4,G4,H4
etc down to row 50.

Thanks

Aaron

"Bob Phillips" wrote in message
...
Select the cells, I assume starting at A1, and use a formula of

=AND(A1=MIN($F3:$H3),MOD(ROW(A1),3)=0)

--
---
HTH

Bob


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



"Aaron Hodson (Coversure)" wrote in message
...
Hello,

I am trying to perform a basic (!!) task which involves a table where
the lowest figure requires to be highlighted.

I used the formula in conditional formatting "cell value" "equals"
"min$F$3:$H$3"

This works fine, but, my table has already been created and i want to
continue this to row 50.

How can I do this without having to conditional format every 3 cells??

I am using both xp & 07 office (if this helps)

Thanks

Aaron








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default conditional formatting - repeat formula

I had an error in the formula, it should have been

=AND(A1=MIN($F1:$H1),MOD(ROW(A1),3)=0)

but this works just as well in 2007 compatibility mode.

--
---
HTH

Bob


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



"Aaron Hodson (Coversure)" wrote in message
...
Sorry,
still can't get this working....
Can i send it across to you?
is it maybe becuae i am working in office 2007 compat mode?

"Bob Phillips" wrote in message
...
That works fine for me with that range.

Select A1:O50 and apply the CF.

--
---
HTH

Bob


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



"Aaron Hodson (Coversure)" wrote in message
...
Cannot get this to work...

To explain in a little more detail, my table ranged from A1 to O50.

Data from F3:H3 to F50:H50 is required for formatting.

I need the lowest figure being highlighted out of F3,G3,H3
Then again out of F4,G4,H4
etc down to row 50.

Thanks

Aaron

"Bob Phillips" wrote in message
...
Select the cells, I assume starting at A1, and use a formula of

=AND(A1=MIN($F3:$H3),MOD(ROW(A1),3)=0)

--
---
HTH

Bob


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



"Aaron Hodson (Coversure)" wrote in message
...
Hello,

I am trying to perform a basic (!!) task which involves a table where
the lowest figure requires to be highlighted.

I used the formula in conditional formatting "cell value" "equals"
"min$F$3:$H$3"

This works fine, but, my table has already been created and i want to
continue this to row 50.

How can I do this without having to conditional format every 3 cells??

I am using both xp & 07 office (if this helps)

Thanks

Aaron








  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 46
Default conditional formatting - repeat formula

works a treat!!

thanks bob

"Bob Phillips" wrote in message
...
I had an error in the formula, it should have been

=AND(A1=MIN($F1:$H1),MOD(ROW(A1),3)=0)

but this works just as well in 2007 compatibility mode.

--
---
HTH

Bob


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



"Aaron Hodson (Coversure)" wrote in message
...
Sorry,
still can't get this working....
Can i send it across to you?
is it maybe becuae i am working in office 2007 compat mode?

"Bob Phillips" wrote in message
...
That works fine for me with that range.

Select A1:O50 and apply the CF.

--
---
HTH

Bob


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



"Aaron Hodson (Coversure)" wrote in message
...
Cannot get this to work...

To explain in a little more detail, my table ranged from A1 to O50.

Data from F3:H3 to F50:H50 is required for formatting.

I need the lowest figure being highlighted out of F3,G3,H3
Then again out of F4,G4,H4
etc down to row 50.

Thanks

Aaron

"Bob Phillips" wrote in message
...
Select the cells, I assume starting at A1, and use a formula of

=AND(A1=MIN($F3:$H3),MOD(ROW(A1),3)=0)

--
---
HTH

Bob


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



"Aaron Hodson (Coversure)" wrote in message
...
Hello,

I am trying to perform a basic (!!) task which involves a table where
the lowest figure requires to be highlighted.

I used the formula in conditional formatting "cell value" "equals"
"min$F$3:$H$3"

This works fine, but, my table has already been created and i want to
continue this to row 50.

How can I do this without having to conditional format every 3
cells??

I am using both xp & 07 office (if this helps)

Thanks

Aaron









  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default conditional formatting - repeat formula

Excellent, sorry for the original typo.

--
---
HTH

Bob


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



"Aaron Hodson (Coversure)" wrote in message
...
works a treat!!

thanks bob

"Bob Phillips" wrote in message
...
I had an error in the formula, it should have been

=AND(A1=MIN($F1:$H1),MOD(ROW(A1),3)=0)

but this works just as well in 2007 compatibility mode.

--
---
HTH

Bob


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



"Aaron Hodson (Coversure)" wrote in message
...
Sorry,
still can't get this working....
Can i send it across to you?
is it maybe becuae i am working in office 2007 compat mode?

"Bob Phillips" wrote in message
...
That works fine for me with that range.

Select A1:O50 and apply the CF.

--
---
HTH

Bob


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



"Aaron Hodson (Coversure)" wrote in message
...
Cannot get this to work...

To explain in a little more detail, my table ranged from A1 to O50.

Data from F3:H3 to F50:H50 is required for formatting.

I need the lowest figure being highlighted out of F3,G3,H3
Then again out of F4,G4,H4
etc down to row 50.

Thanks

Aaron

"Bob Phillips" wrote in message
...
Select the cells, I assume starting at A1, and use a formula of

=AND(A1=MIN($F3:$H3),MOD(ROW(A1),3)=0)

--
---
HTH

Bob


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



"Aaron Hodson (Coversure)" wrote in message
...
Hello,

I am trying to perform a basic (!!) task which involves a table
where the lowest figure requires to be highlighted.

I used the formula in conditional formatting "cell value" "equals"
"min$F$3:$H$3"

This works fine, but, my table has already been created and i want
to continue this to row 50.

How can I do this without having to conditional format every 3
cells??

I am using both xp & 07 office (if this helps)

Thanks

Aaron











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
Conditional formatting as a formula tbsolms Excel Worksheet Functions 0 March 8th 07 10:49 PM
Conditional formatting is set with a formula, but now I need to ch cstwoplus Excel Discussion (Misc queries) 4 January 31st 07 11:12 PM
Conditional formatting formula David Rose Excel Worksheet Functions 3 March 20th 06 11:54 PM
Conditional Formatting Formula jgp_2 Excel Worksheet Functions 1 February 3rd 06 06:37 PM
conditional formatting with FORMULA... Please HELP! Chris M Excel Discussion (Misc queries) 0 August 18th 05 11:51 PM


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

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"