J
John
Hello all,
I am wondering if any of you can help out with a very
perplexing issue that I am coming up with. I run the
following code to append records to a table, using another
table as a recordsource.
rDestin.MoveFirst
Do Until rDestin.EOF
If rDestin!L35_Fnd = True Then
Else
rSource.Seek "=", rDestin!CC_Num
If rSource.NoMatch Then
Else
rDestin.Edit
If rSource!parent_node_level = 35
rDestin!L35 = rSource!parent_node
rDestin!L35_Fnd = True
Else
rDestin!calc = rSource!parent_node
rDestin!L35_Fnd = False
End If
rDestin.Update
End If
End If
rDestin.MoveNext
Loop
Is there any other code that would not double the size of
the code? Any help would be greatly Appreciated.
Thanks
I am wondering if any of you can help out with a very
perplexing issue that I am coming up with. I run the
following code to append records to a table, using another
table as a recordsource.
rDestin.MoveFirst
Do Until rDestin.EOF
If rDestin!L35_Fnd = True Then
Else
rSource.Seek "=", rDestin!CC_Num
If rSource.NoMatch Then
Else
rDestin.Edit
If rSource!parent_node_level = 35
rDestin!L35 = rSource!parent_node
rDestin!L35_Fnd = True
Else
rDestin!calc = rSource!parent_node
rDestin!L35_Fnd = False
End If
rDestin.Update
End If
End If
rDestin.MoveNext
Loop
Is there any other code that would not double the size of
the code? Any help would be greatly Appreciated.
Thanks