Search results

  1. K

    VBA Code

    What is the best way to state this? If [Msampleid1] = "" Then [Mlink2] = "#" & "\customers\" & LCase([Msampleid]) & ".pdf" Else [Mlink2] = "#" & "\customers\" & LCase([Msampleid]) & "-" & LCase([Msampleid1]) & ".pdf" Thanks.
  2. K

    Query Expression

    Perfect!
  3. K

    Query Expression

    Any examples you could provide?
  4. K

    Query Expression

    How can I create an expression in a query that brings back only after the last \? Also, if the field has no value then return a blank or null. \6002.pdf (should look like this) \\SERVER\Plus\Spec\Results\ABC\ABC\Results\6002.pdf Thanks.
  5. K

    Lcase

    Thanks for all the advice on this.
  6. K

    Lcase

    It did not erase the data, it makes it just text and not a hyperlink.
  7. K

    Lcase

    I have a query with a hyperlink field. I want to force lower case but when I do, it removes the hyperlink? What am I doing wrong? History Link: LCase([Mlink3])
  8. K

    Conditional Formating

    Thanks!
  9. K

    Conditional Formating

    Not equal, needs to be contains the word "Apple"
  10. K

    Conditional Formating

    Using conditional formatting, how would the code look if I wanted to find any records in [field1] with the word "Apple" in it. Thanks.
  11. K

    Not Null

    Thank You!
  12. K

    Not Null

    That worked! Thanks!
  13. K

    Not Null

    I'm pulling one record only.
  14. K

    Not Null

    I have a report (onload) that has four fields which are all NOT visible. I would like to make each field visible if the condition is met. If IsNotNull([Mresults1]) And IsNull([Mresults2]) Then [Mresults1].Visible = True If IsNotNull([Mresults2]) And IsNull([Mresults3]) Then [Mresults2].Visible...
  15. K

    Query Link

    Correct.
  16. K

    Query Link

    Any way to make it a hyperlink too?
  17. K

    Query Link

    Works Great! One question though... The field [Link] is a hyperlink but when I use this code, it does not keep any hyperlink.
  18. K

    Query Link

    Can you show me how that code would look in the query?
  19. K

    Query Link

    I have a field called [Link] and the data looks like this... \customers\tomsmith\pdf\1234.pdf In a query, how can I create a field that removes everything up to the pdf? \customers\tomsmith\pdf Thanks
  20. K

    back color

    Perfect!!!
Back
Top Bottom