Exel 2003

R

Randall

Hi All i am back i have got my form set up in exel i know wish to use it but
i do not need the the rest of the exel grid i just need the form that i have
made up to send to my agents so that they can fill in the info that is needed
i need them to be able to save the form on the desktop and then email a copy
each week whith the info for that week.
 
J

JLatham

Tools | Options then select the [View] tab. Clear the checkbox next to
"Gridlines"

That may leave you with no lines at all - and if you need some in the form
area, then you'll need to add them as Borders to the cells.

Alternatively you can simply hide the unused rows and columns, this macro
will hide all rows below row 4 and all columns to the right of column F.
Adjust the ranges as needed. The hidden area will become solid gray.

Sub Macro1()
Rows("5:65536").Hidden = True
Columns("G:IV").Hidden = True
End Sub
 

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