Search results

  1. K

    Data Format

    [Mlink] = "#\comps\pdf\" & [Msample] & ".pdf#" Msample data looks like this: 12345.SPA, so the above results is: \comps\pdf\12345.SPA.pdf How can I remove the .SPA? So it looks like \comps\pdf\12345.pdf in vba.
  2. K

    lookup in multiple fields

    ok
  3. K

    lookup in multiple fields

    Because I just want to make sure the syntax is correct. Easy to miss something and not have it work. That's why I'm asking.
  4. K

    lookup in multiple fields

    Can you show me how that would look? Thanks.
  5. K

    lookup in multiple fields

    Could you show me exactly how that would look? Thanks.
  6. K

    lookup in multiple fields

    I'm using the following code to lookup if a number already exists. Works fine. I would like it to search in three other fields as well. Msamplenumber2, Msamplenumber3, Msamplenumber4 So when it does a lookup, it would look in all four fields. How can I combine those extra three fields below...
  7. K

    If with . Attachement

    (y)
  8. K

    If with . Attachement

    The value for Msample is at the beginning of my code. That part works fine. I'm going to try below. If IsNull([Msample]) Then .Attachments.Add "\\Web\bass1\pdf\" & [Msample] & ".pdf" Else .Attachments.Add "\\Web\bass2\pdf\" & [Msample] & ".pdf"
  9. K

    If with . Attachement

    No, if Msample is null then xxx.pdf else zzz.pdf
  10. K

    If with . Attachement

    Thanks.
  11. K

    If with . Attachement

    I'm using the following... .Attachments.Add "\\Web\bass\pdf\" & [Msample] & ".pdf" I would like to create an if statement for the attachment line. If IsNull([Msample]) Then .Attachments.Add "\\Web\bass1\pdf\" & [Msample] & ".pdf" Else .Attachments.Add "\\Web\bass2\pdf\" & [Msample] & ".pdf"...
  12. K

    Hyperlink, Find and Replace

    thought I did. Works now. Thanks!
  13. K

    Hyperlink, Find and Replace

    Got it.
  14. K

    Hyperlink, Find and Replace

    yes
  15. K

    Hyperlink, Find and Replace

    Yes
  16. K

    Hyperlink, Find and Replace

    Something like this... [Mlink4] = Replace([Mlink1],"normal","custom")
  17. K

    Hyperlink, Find and Replace

    this seems to keep the format. In a query. How can I convert that to vba for a command button? Expr: Replace([Mlink1],"normal","custom")
  18. K

    Hyperlink, Find and Replace

    Sorry... yes, I was simply replacing "normal" with "custom" \\server\testing\normal\12345.pdf file:///\\server\testing\custom\.pdf (after replace)
  19. K

    Hyperlink, Find and Replace

    I'm working with a hyperlink field. I know they can be tricky. I'm trying to do a find and replace but it changes the format? In the past, I had to export to excel but wondering if a better way exists. \\server\testing\custom\12345.pdf file:///\\server\testing\custom\.pdf (after replace)
  20. K

    Prompt User for a field

    Thanks
Back
Top Bottom