Conditional Formatting for Matching Odd Rows only

gtd526

Well-known Member
Joined
Jul 30, 2013
Messages
660
Office Version
  1. 2019
Platform
  1. Windows
Hello,
These Highlights are the result for current Conditional Formatting.
Looking to Match for Odd Rows.

NBA.xlsm
ABCDEF
2TeamATS RecordCover %MOVATS +/-
3ORLOrlando29-13-00.6918.95.4
4HOUHouston27-13-10.6755.34.4
5OKCOkla City28-15-00.65113.16.2
6UTAUtah24-17-00.5851.73.5
7PHIPhiladelphia25-19-00.5684.7-0.3
8INDIndiana23-18-20.5616.93.3
9BOSBoston23-18-20.56114.74.1
10SASSan Antonio22-19-00.537-4.11.2
11BRKBrooklyn20-18-30.5261.31.6
12NYKNew York22-20-10.5245.91.3
ATS Trends
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A3:A32,D3:D32,E3:E32,F3:F32Expression=AND(MATCH($A3,Favs!$A$4:$A$33,0),$D3>=0.546)textNO


Where we want to Match using ODD Rows only. ie Only HOU will Match (above).

NBA.xlsm
AB
3TeamATS
4PHI3.5
5NYK-3.5
6ORL4.5
7CLE-4.5
8IND-4.5
9MIL4.5
10BRK5
11HOU-5
12
13 
14
15 
16
17 
18
19 
Favs
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
=AND(MATCH($A3,Favs!$A$4:$A$33,0),$D3>=0.546)
how about
=ISODD(ROW(A3))

=AND(MATCH($A3,Favs!$A$4:$A$33,0),$D3>=0.546,=ISODD(ROW($A3)))
 
Upvote 0
=AND(MATCH($A3,Favs!$A$4:$A$33,0),$D3>=0.546)
how about
=ISODD(ROW(A3))

=AND(MATCH($A3,Favs!$A$4:$A$33,0),$D3>=0.546,=ISODD(ROW($A3)))
The ISODD(ROW...is for Favs!$A$4:$A$33
 
Upvote 0
so you only want to match if the lookup a3 is on an odd row in the column A4;A33
so it matches as its in row 11 at the moment - but if HOU was in cell 12 , then no match

not sure i know how to do that exactly, but see if thats what you want
 
Upvote 0
so you only want to match if the lookup a3 is on an odd row in the column A4;A33
so it matches as its in row 11 at the moment - but if HOU was in cell 12 , then no match

not sure i know how to do that exactly, but see if thats what you want
Yes. Match the cell if its in an ODD Row in Favs!$A$4:$A$33.
 
Upvote 0

Forum statistics

Threads
1,216,179
Messages
6,129,334
Members
449,503
Latest member
glennfandango

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top