I'm trying to update a table with information from another table. The tables have 4 fields that should match to allow the update.
Here is the code that is giving me a problem:
I don't get an error - it just doesn't find the match in my table (which I know exists).
Here is the code that is giving me a problem:
Code:
With UpdtTrends
.FindFirst ("[FNU]=" & MyTrend!FNU & " AND " & _
"[TrendCat_CK]=" & MyTrend!trend_cat_CK & " AND " & _
"[Trend_From_Dt]=" & MyTrend!trend_from & " AND " & _
"[Trend_To_Dt]=" & MyTrend!trend_to)
If Not .NoMatch Then
.Edit
UpdtTrends!Trend_Fctr = MyTrendCat
UpdtTrends.Update
MyTrend.MoveNext
Comment