How to edit the code below so that it only fills till Column N instead of the entire row??
![]()
'Rows(LR ).EntireRow.Interior.Color = 5287936
Thanks,
How to edit the code below so that it only fills till Column N instead of the entire row??
![]()
'Rows(LR ).EntireRow.Interior.Color = 5287936
Thanks,
Try this, assuming LR is an integer with a row number:
![]()
Cells.(LR, "N").Interior.Color = 5287936
Oh sorry, you wanted all columns up to N, not just N. Try this:
![]()
Range("A" & LR ":N" & LR).Interior.Color = 5287936
Throwing an syntax error, even though no syntax error was found
I want to fill the entire Lastrow from columns A to N
The above code just fill in the Nth column last row.
Thanks,
You need to look at my last post, #3. Looks like you were commenting based on post #2.
Range("A" & LR & ":N" & LR).Interior.Color = 5287936
Ben Van Johnson
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks