Quote (Dontrunaway @ Apr 6 2016 06:30pm)
Ok this isn't that difficult to accomplish. Excel allows for this automatically.
This can be done without R1C1 referencing, but since that's how I learned to program in VBA, I always use R1C1 referencing so this may look foreign to you.
I entered numbers randomly into column 1, then highlighted column 2 and did a conditional format on the whole column. I selected "use a formula to determine which cells to format". The formula is simple: =isnumber(RC[-1])
This will apply the formatting if the cell in the same row (R) and one column to the left (C[-1]) is a number.
This works when you add new numbers into column 1, and will highlight column 2 regardless of what it contains.
http://puu.sh/o8QCu.pngMuch thanks.
I just didn't know the formula =[
Was thinking of something along like =if(ISNUMBER($A:A)) and so on from there lol.
Will do your formula tomorrow when I get to work. This will save me like 2hours of work <.< (Making amends to contracts and gotta highlight shit and label the amends number and amend them.) Dislike moving mouse back and forth to highlight
Uhhhh can I make the formula something like.
=isnumber(R$A:A) or has to be C[ ]
This post was edited by Uguu on Apr 6 2016 09:41pm