Is it possible to look through all the rows in a range and resize them?
I am thinking something like:
I have tried fidleing with this but haven't gotten great results.
I am thinking something like:
Code:
sub resize_rows()
dim rngloop as range
Set rngloop = ActiveSheet.UsedRange
for each row in rngloop
'set row hight to 12.5
loop
end sub
I have tried fidleing with this but haven't gotten great results.