Search results

  1. O

    subform to get values from main form into master table

    Hi! I have a form, a subform and a master unique table. I need the unique table to updated in the following manner: Form has certain fields that need to be assigned to every record created in the subform[id] and [info1] Subform has a unique [caseid], and contains further [info2] but needs to be...
  2. O

    code for changing every value with multiple criteria

    Hello! I made this code in excel, and I'd love to get it working in access. Sub Satunnaisluvut() Dim OmaAlue As Range Dim Solu As Range Set OmaAlue = Range("A1:A5") For Each Solu In OmaAlue If Solu.Value = "aa" Then Solu.Value = "bb" End If Next Solu End Sub How do i set the wanted field...
Back
Top Bottom