![]() |
macro to apply only to even number rows and NonBlank cells
I want a macro to be useable only on even number rows, AND
NonBlankcells. I need something like an If Then statement? Like If ActiveCell.Row _______ Then Exit Sub? Thank you for your help. Tonso |
macro to apply only to even number rows and NonBlank cells
if activecell.row mod 2 = 0 then
'it's an even row if isempty(activecell.value) then 'it's empty Billy wrote: I want a macro to be useable only on even number rows, AND NonBlankcells. I need something like an If Then statement? Like If ActiveCell.Row _______ Then Exit Sub? Thank you for your help. Tonso -- Dave Peterson |
macro to apply only to even number rows and NonBlank cells
On Apr 22, 9:05*am, Dave Peterson wrote:
if activecell.row mod 2 = 0 then * 'it's an even row if isempty(activecell.value) then * 'it's empty Billy wrote: I want a macro to be useable only on even number rows, AND NonBlankcells. I need something like an If Then statement? Like If ActiveCell.Row _______ Then Exit Sub? Thank you for your help. Tonso -- Dave Peterson Thanks so very much Dave. Works perfect! You MVPs [and of course some non-MPVs also) sure add value to Excel! Thanks again, Tonso |
All times are GMT +1. The time now is 02:00 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com