![]() |
Conditional format - max
i wish to highlight the cell at largest value in some cells (A1, A3, A5...)
in A column i know how to do it if they are all the cells in A column =A1=max($a:$a) how can i do selectively if they are just A1, A3, A5...? Secondly, the value of A1, A3, A5... are less than 10, other values in the column are larger than 10. Can i make use "countif" to do above? Thanks a lot. tony |
Conditional format - max
Use =A1=MAX(A1, A3, A5) tony wong Wrote: i wish to highlight the cell at largest value in some cells (A1, A3, A5...) in A column i know how to do it if they are all the cells in A column =A1=max($a:$a) how can i do selectively if they are just A1, A3, A5...? Secondly, the value of A1, A3, A5... are less than 10, other values in the column are larger than 10. Can i make use "countif" to do above? Thanks a lot. tony -- Excelenator ------------------------------------------------------------------------ Excelenator's Profile: http://www.excelforum.com/member.php...o&userid=36768 View this thread: http://www.excelforum.com/showthread...hreadid=566120 |
Conditional format - max
If it is always the every other cell starting in A1 you can use
=SUMPRODUCT(MAX(IF(ISNUMBER($A$1:$A$10)*(MOD(ROW($ A$1:$A$10),2)=1),($A$1:$A$10)))) replace A1:A10 with the range in question, note also that you can't have any numbers equaling the max value in A2, A4 and so on I don't understand your 2nd question -- Regards, Peo Sjoblom Excel 95 - Excel 2007 Northwest Excel Solutions www.nwexcelsolutions.com "tony wong" wrote in message ... i wish to highlight the cell at largest value in some cells (A1, A3, A5...) in A column i know how to do it if they are all the cells in A column =A1=max($a:$a) how can i do selectively if they are just A1, A3, A5...? Secondly, the value of A1, A3, A5... are less than 10, other values in the column are larger than 10. Can i make use "countif" to do above? Thanks a lot. tony |
Conditional format - max
This would be enough since you don't need to array enter formulas
A1=MAX(IF(ISNUMBER($A$1:$A$10)*(MOD(ROW($A$1:$A$10 ),2)=1),($A$1:$A$10))) -- Regards, Peo Sjoblom Excel 95 - Excel 2007 Northwest Excel Solutions www.nwexcelsolutions.com "Peo Sjoblom" wrote in message ... If it is always the every other cell starting in A1 you can use =SUMPRODUCT(MAX(IF(ISNUMBER($A$1:$A$10)*(MOD(ROW($ A$1:$A$10),2)=1),($A$1:$A$10)))) replace A1:A10 with the range in question, note also that you can't have any numbers equaling the max value in A2, A4 and so on I don't understand your 2nd question -- Regards, Peo Sjoblom Excel 95 - Excel 2007 Northwest Excel Solutions www.nwexcelsolutions.com "tony wong" wrote in message ... i wish to highlight the cell at largest value in some cells (A1, A3, A5...) in A column i know how to do it if they are all the cells in A column =A1=max($a:$a) how can i do selectively if they are just A1, A3, A5...? Secondly, the value of A1, A3, A5... are less than 10, other values in the column are larger than 10. Can i make use "countif" to do above? Thanks a lot. tony |
All times are GMT +1. The time now is 07:18 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com