F
fi.or.jp.de
Hi All,
I have macro like this
sub unique()
''''''''
''''''''
Counter_item = 0
For Each Item In nodups
counter_item = counter_item + 1
bic_var = Item
Call Ps_Match
Next Item
end sub
I have another macro
Sub Ps_Match()
'''''
'''''
If counter_item <= 1 Then
call another_macro()
end if
end sub
In the first macro i am declaring counter_item equals to 1.
In my second macro i need to call that number.
I have macro like this
sub unique()
''''''''
''''''''
Counter_item = 0
For Each Item In nodups
counter_item = counter_item + 1
bic_var = Item
Call Ps_Match
Next Item
end sub
I have another macro
Sub Ps_Match()
'''''
'''''
If counter_item <= 1 Then
call another_macro()
end if
end sub
In the first macro i am declaring counter_item equals to 1.
In my second macro i need to call that number.