Fill cells based on value
I am looking for a way to fill a number of cells in a row/column based on a particular cell's value. So, if a cells value is say 7 or 3, then 7 cells or 3 cells must be be filled with a particular color.
Thanks in advance
ExcelExperts.comExcel Consultancy, VBA Consultancy, Training and Tips Call:+442081234832 |
|
Excel / VBA ConsultancyFree Training VideosFree SpreadsheetsExcel / VBA JobsNavigationWho's onlineThere are currently 0 users and 318 guests online.
New Excel Experts
Current Excel / VBA Jobs |
Fill cells based on valueI am looking for a way to fill a number of cells in a row/column based on a particular cell's value. So, if a cells value is say 7 or 3, then 7 cells or 3 cells must be be filled with a particular color. Thanks in advance |
Highest Ranked Users
Recent Blogs
ForumsRecent comments
User login |
fill cell base on color
Click Conditional formatting > New Rule…
use a formula to determine which cells to format.
=AND(A2>=3,A2<=7)
Choose Format
OK