E
eggpap
Hello,
I have a workbook (let's call it "MyWb") with many udf and sheets i
it.
To simplify the issue suppose I have the following code i
Worksheet_change event of Sheet1:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Row = 7
target.offset(1)="x"
end if
End Sub
or: when a cell of 7th row changes its value, valorize th
corresponding
column cell on the 8th row with the value "x"
This code performs correctly on an empty wb. On MyWB project, instead
nothing happens, the offset(1) cell is not valorized and no error i
claimed.
I have debugged with two breakpoints placed on the third and fourt
statement on the sample snippet. The program stops correctly on th
first bp. Then, if I press F8 to do another step, the program stop
internally to one udf, the, if I press F5 to complete the run, th
program ignores the second bp and I get nothing.
Thanks,
Emiliano
Excel 2003 on Vista HP
VBA knowin
I have a workbook (let's call it "MyWb") with many udf and sheets i
it.
To simplify the issue suppose I have the following code i
Worksheet_change event of Sheet1:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Row = 7
target.offset(1)="x"
end if
End Sub
or: when a cell of 7th row changes its value, valorize th
corresponding
column cell on the 8th row with the value "x"
This code performs correctly on an empty wb. On MyWB project, instead
nothing happens, the offset(1) cell is not valorized and no error i
claimed.
I have debugged with two breakpoints placed on the third and fourt
statement on the sample snippet. The program stops correctly on th
first bp. Then, if I press F8 to do another step, the program stop
internally to one udf, the, if I press F5 to complete the run, th
program ignores the second bp and I get nothing.
Thanks,
Emiliano
Excel 2003 on Vista HP
VBA knowin