on worksheet load

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I'm trying to dim / hide certain cells on worksheet load (in Excel). What
is the function name for On_Worksheet_Load? Also, How do I dim out certain
cells, not just columns and rows?
 
You could use the

Workbook_Open()

or

Worksheet_Activate()

events, depending on your needs (worksheets don't load - workbooks do).

You can only hide entire rows or columns. However you could use the same
fill and font colors for a cell (or change its number format to ;;;).
Perhaps more detail on what you're trying to do would help be more
specific.
 
Workbook_open() is good. Basically, what I want to do is really simple. I
have some buttons list on a spreadsheet. When I click on one button I want a
certain section of cells to unhide and then I want the user to click each
cell containing the information. Once they click on that cell that has their
info, I want that cell to highlight yellow. And then I need the changes to
persist once they send it via email. Hopefully, that explanation helps.
 

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

Back
Top