Hiding row ?

J

jodleren

Hi all

Am I doing anything wrong here?

ws.Range(Trim(Str(j)) & ":" & Trim(Str(j))).Hidden =
True

It does not work for some reason....

Sonnich
 
D

Dave Peterson

I would use Jim's
ws.Rows(j).Hidden = True

or
ws.cells(j,1).entirerow.hidden = true
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top