Search results

  1. A

    Cascading Combos

    Brilliant - thank you again arnelgp
  2. A

    Cascading Combos

    The db above was a training db and based on your advise I got it working but when I went to do it in my actual db - it seems to have a problem with requery?
  3. A

    Cascading Combos

    Thanks arnelgp - I did both of these - thank you
  4. A

    Cascading Combos

    Wow! Thanks MajP .... Savant indeed
  5. A

    Cascading Combos

    I know I'm close but just need some help with the attached please. The Product Type is the parent and the Product Sub Type is the Child. Just want to show the filtered fields in the child when the parent is selected in the form. Thanks AdelaideKiwi
  6. A

    Unique identifer for Lead Number

    Perfect - thank you arnelgp
  7. A

    Postcode - Updating State and Postcode based on Suburb

    Hi Uncle Gizmo, I have a table called 'tblPostcode'. A postcode can have a number of suburbs. Each Suburb only has 1 postcode and 1 state. NT means Northern Territory
  8. A

    Unique identifer for Lead Number

    Thanks CJ - it worked perfectly but I need the prefix of 21 - xxxx
  9. A

    Unique identifer for Lead Number

    Hi Arnelgp, Private Sub Form_BeforeInsert(Cancel As Integer) Dim strNewLeadNum As String Dim v As Variant strNewLeadNum = Nz(DMax("LeadNo", "tblLeadGeneration", "[LeadNo] like " & Left$(Year(Date), 2) & "*"), "") If Len(strNewLeadNum) < 1 Then strNewLeadNum = Right$(Year(Date), 2) & "-0001"...
  10. A

    Postcode - Updating State and Postcode based on Suburb

    I would like my form to auto populate the state and postcode based on the 'after update' of my suburb please. Thanks AdelaideKiwi
  11. A

    Unique identifer for Lead Number

    Hello All, This is my first post so bare with this newbie. This has probably been answered before so perhaps a point in the right direction might be good. I have a table/form called "Lead Generation" It has a field called "Lead Number". It is not the primary and is not an autonumber. I want it...
Top Bottom