Announcement

Collapse
No announcement yet.

efs coding for "or"

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • efs coding for "or"

    Hi,
    I have a line of efs coding that uses && in it, what is the efs coding for "or"?

    ..present coding..
    if ( ( PFWAW1Pct >= 90) && ( PFWAW1Pct <= 110) )


    ...to be changed to...
    if ( ( PFWAW1Pct < 90) /*OR*/ ( PFWAW1Pct > 110) )

    Thanks,
    Paul

  • #2
    Re: efs coding for &quot;or&quot;

    Paul
    See this thread in which you asked the same question
    Alex


    Originally posted by TURLIES
    Hi,
    I have a line of efs coding that uses && in it, what is the efs coding for "or"?

    ..present coding..
    if ( ( PFWAW1Pct >= 90) && ( PFWAW1Pct <= 110) )


    ...to be changed to...
    if ( ( PFWAW1Pct < 90) /*OR*/ ( PFWAW1Pct > 110) )

    Thanks,
    Paul

    Comment


    • #3
      Thanks Alex,
      I only ever used the "||" coding for "or" that once, so I had totally forgotten about it.
      Paul

      Comment


      • #4
        Paul
        You are welcome
        Alex


        Originally posted by TURLIES
        Thanks Alex,
        I only ever used the "||" coding for "or" that once, so I had totally forgotten about it.
        Paul

        Comment

        Working...
        X