Results 1 to 2 of 2

Thread: display records

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Sep 2002
    Posts
    779

    display records

    I have a formula field that looks like this:

    '"' & {tblMailList.F1} & '"' & "," & '"' & {tblMailList.F2} & '"'

    If tblMailList.F2 is null then the record is not displayed. How do I get around this?

  2. #2
    PowerPoster
    Join Date
    Oct 2002
    Location
    British Columbia
    Posts
    9,758

    Re: display records

    That does not appear to be a valid formula. Regardless, use an If statement.

    Code:
    If Not (IsNull(tblMailList.F1) Or IsNull({tblMailList.F2})) Then
       '"' & {tblMailList.F1} & '"' & "," & '"' & {tblMailList.F2} & '"'
    End If

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width