I have a column that can be the value True or False - I would like to change the property
ActiveCell.Interior.Color = &HFFFFFF 'white - False
ActiveCell.Interior.Color = &H80FFFF 'Yellow - True
what is the most effective way to write code to do this (for like 20K rows)- Lets assume the column is "C" - My cells are initially populate from files read into arrays and then the arrays are transposed using the worksheetfunction. So I think the coloring should be done after my transpose code line
ActiveCell.Interior.Color = &HFFFFFF 'white - False
ActiveCell.Interior.Color = &H80FFFF 'Yellow - True
what is the most effective way to write code to do this (for like 20K rows)- Lets assume the column is "C" - My cells are initially populate from files read into arrays and then the arrays are transposed using the worksheetfunction. So I think the coloring should be done after my transpose code line
Last edited: