Search results

  1. K

    Prompt for report name

    Could you provide me with an example?
  2. K

    Prompt for report name

    Is it possible to get prompted to enter the report name instead of what I'm using? strDocName = "Report-BA" DoCmd.OpenReport strDocName, acViewReport, , strWhere Thanks.
  3. K

    Embedded Macro

    I have a form with several command buttons. I would like to click a button automatically if: If [notes] Like "*Apple*" Then Call Command646_Click If seems to work fine on a command button that is vba but it does not work if the command button is an embedded macro. I get the this error...
  4. K

    Unblock Checkbox

    I see... Thanks.
  5. K

    Unblock Checkbox

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

    Query Data

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

    Query Data

    Can you provide me an example? The field is [cust] Thanks.
  8. 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
  9. K

    Format

    It gets rid of the comma and the extra space but everything is on one line now.
  10. 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.
  11. 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?
  12. 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?
  13. 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?
  14. 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]
  15. K

    Format

    That did it!
  16. K

    Format

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

    Format

    I tried that but it keeps putting square brackets around the vbCrLf? =[Street Address] & [vbCrLf] & [Street Address Line 2] & [City]
  18. 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
  19. K

    lower case

    Is there any way to make the the first letter of each word CAP and the rest lower case? Example: SUNSHINE STRORAGE SYSTEMS, would be Sunshine Storage Systems Thanks.
  20. K

    lower case

Back
Top Bottom