Recent content by kitty77

  1. K

    Unblock Checkbox

    I see... Thanks.
  2. K

    Unblock Checkbox

    When I go to properties, I don't see the unblock checkbox like in some tutorials? Thanks.
  3. K

    Query Data

    Thanks for the example but keep you 2 cents to yourself next time. Sorry I'm not an expert like you!
  4. K

    Query Data

    Can you provide me an example? The field is [cust] Thanks.
  5. K

    Query Data

    I have a table that has data that looks like this... I need to create a query that gives me everything before the first space ADVA80403 Advanced AIRC23072 Air BETV16523 Tom Need it to look like this. ADVA80403 AIRC23072 BETV16523
  6. K

    Format

    It gets rid of the comma and the extra space but everything is on one line now.
  7. K

    Format

    So, using my example: =[Street Address] & (Chr(13) + Chr(10) + [Street Address Line 2]) & Chr(13) & Chr(10) & [City] & ", " & [State] & " " & [Zip Code] Where do I change it so the ", " and the " " don't show? Before the those or before the city, state, zip? Not clear. Sry.
  8. K

    Format

    Perfect! One last small item. How can I get rid of the comma (", ") and the extra space (" ") if both Address/s are null?
  9. K

    Format

    Sometimes, =[Street Address] can be null and [Street Address Line 2] have a value. So, how can I check for either null and remove that blank line?
  10. K

    Format

    When I try this: =[Street Address] + (Chr(13) & Chr(10) & [Street Address Line 2]) & Chr(13) & Chr(10) & [City] & ", " & [State] & " " & [Zip Code] I get the same results as before?
  11. K

    Format

    So, here is my code... How can I make it remove the extra line if [Street Address Line 2] is empty? =[Street Address] & Chr(13) & Chr(10) & [Street Address Line 2] & Chr(13) & Chr(10) & [City] & ", " & [State] & " " & [Zip Code]
  12. K

    Format

    That did it!
  13. K

    Format

    Yes, on a textbox on a form.
  14. K

    Format

    I tried that but it keeps putting square brackets around the vbCrLf? =[Street Address] & [vbCrLf] & [Street Address Line 2] & [City]
  15. K

    Format

    I'm combining a few fields and need to have a return (next line) after each. =[Street Address] & [Street Address Line 2] & [City] Street Address Street Address Line 2 City
Top Bottom