F8 step into doesnt work

bob733

Board Regular
Joined
Dec 2, 2002
Messages
84
I have a vba macro attached to a worksheet. When I enter debug mode, F8 will not start stepping into the macro. Nothing happens at all.

Probably something easy but I cant figure it out.

Thanks in advance.
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
How exactly are you entering debug mode?

Where has the code been stopped/paused?
 
Upvote 0
This might be a stupid question, but where's the cursor when you do that?
 
Upvote 0
What is the signature of the procedure you're trying to step into?

It must be a Sub (not a Function), and it cannot have any arguments.
 
Upvote 0
Bob

You can't run that with F8.

Try putting a breakpoint on the first line with F9.

Then goto the worksheet and enter something in a cell.

The change event will be triggered and you can then step through it.
 
Upvote 0
Great call! I never would have got that. Thanks. I may come back when the code itself doesnt work! haha

Thanks ever so much.

Bob
 
Upvote 0

Forum statistics

Threads
1,215,443
Messages
6,124,890
Members
449,194
Latest member
JayEggleton

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top