Help with an error message

  • Thread starter Thread starter CarolineHedges
  • Start date Start date
C

CarolineHedges

My macro has worked fine previously and all of a sudden this error
message comes up:

Object Variable or WIth block variable not set

This happens on the last line of this:

Sheets("Menu").Select
Future = Cells(34, 2).Value
If Future = Empty Then GoTo 1
Sheets("Portfolio Valuation").Select
Cells.Find(What:=Future).Select

Basically I am asking the marco to seach for the word Liab, which I
have entered a on a sheet, and it calls this Future as above. Then it
seaches for this word on the sheet Portfolio Valuation.

Please help!!!
 
There is nothing intrinsically wrong with your code. You are getting the
error because it cannot find, on the Portfolio Valuation sheet, the text it
read from cell B34 on the Menu sheet (which you have assigned to the variable
Future).

Possibilities:
- You entered the search text (Liab) incorrectly
- You entered it into the wrong cell (not B34 on the Menu sheet)
- The search text doesn't exist on the Portfolio Valuation sheet

If the .Find may fail sometimes in your routine and that's legitimate, you
need to add some error handling.

Hope this helps,

Hutch
 

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