Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > Syntax Question

Reply
Thread Tools

Syntax Question

 
 
J-P-W
Guest
Posts: n/a
 
      11-17-2007
Hi,

I want to evaluate 2 things, "Area" and "SubsQuestions"

I need to know if Area = "Six" or Area = "Seven" AND SubsQuestions =
"Yes"

Is it

....... If Area = "Six" or Area = "Seven" AND SubsQuestions = "Yes"
Then

or

....... If Area = "Six" AND SubsQuestions = "Yes" or Area = "Seven" AND
SubsQuestions = "Yes" Then

To confirm...... Six and No is to be ignored
...... Seven and No is to be ignored
...... Seven and Yes will be dealt with
...... Six and Yes will be dealt with

I'm getting confused just typing it!

Thanks

Jon


 
Reply With Quote
 
 
 
 
Bob Barrows [MVP]
Guest
Posts: n/a
 
      11-17-2007
J-P-W wrote:
> Hi,
>
> I want to evaluate 2 things, "Area" and "SubsQuestions"
>
> I need to know if Area = "Six" or Area = "Seven" AND SubsQuestions =
> "Yes"
>
> Is it
>
> ...... If Area = "Six" or Area = "Seven" AND SubsQuestions = "Yes"
> Then
>
> or
>
> ...... If Area = "Six" AND SubsQuestions = "Yes" or Area = "Seven" AND
> SubsQuestions = "Yes" Then
>

Simple grouping

If Area = "Six" or (Area = "Seven" AND SubsQuestions ="Yes") then

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"


 
Reply With Quote
 
 
 
 
J-P-W
Guest
Posts: n/a
 
      11-17-2007
On 17 Nov, 14:33, "Bob Barrows [MVP]" <reb01...@NOyahoo.SPAMcom>
wrote:
> J-P-W wrote:
> > Hi,

>
> > I want to evaluate 2 things, "Area" and "SubsQuestions"

>
> > I need to know if Area = "Six" or Area = "Seven" AND SubsQuestions =
> > "Yes"

>
> > Is it

>
> > ...... If Area = "Six" or Area = "Seven" AND SubsQuestions = "Yes"
> > Then

>
> > or

>
> > ...... If Area = "Six" AND SubsQuestions = "Yes" or Area = "Seven" AND
> > SubsQuestions = "Yes" Then

>
> Simple grouping
>
> If Area = "Six" or (Area = "Seven" AND SubsQuestions ="Yes") then
>
> --
> Microsoft MVP - ASP/ASP.NET
> Please reply to the newsgroup. This email account is my spam trap so I
> don't check it very often. If you must reply off-line, then remove the
> "NO SPAM"- Hide quoted text -
>
> - Show quoted text -


Thanks.

So I can have:

If Area = ("Six" AND SubsQuestions = "Yes") or (Area = "Seven" AND
SubsQuestions = "Yes") Then
'Do stuff
Else
'Do not
End If

Cool

 
Reply With Quote
 
Bob Barrows [MVP]
Guest
Posts: n/a
 
      11-17-2007
J-P-W wrote:
>>
>> - Show quoted text -

>
> Thanks.
>
> So I can have:
>
> If Area = ("Six" AND SubsQuestions = "Yes") or (Area = "Seven" AND
> SubsQuestions = "Yes") Then
> 'Do stuff
> Else
> 'Do not
> End If
>

No, that is not possible - the first parenthesis is in the wrong location:
it needs to be infront of Area:

If (Area = "Six" AND SubsQuestions = "Yes") or _
(Area = "Seven" AND SubsQuestions = "Yes") Then

It's also too verbose. This does exactly the same thing (the commutative
property applies to boolean operators as well as arithmetic operators):

If (Area = "Six" or Area = "Seven") AND SubsQuestions = "Yes" Then

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"


 
Reply With Quote
 
J-P-W
Guest
Posts: n/a
 
      11-17-2007
On 17 Nov, 16:21, "Bob Barrows [MVP]" <reb01...@NOyahoo.SPAMcom>
wrote:
> J-P-W wrote:
>
> >> - Show quoted text -

>
> > Thanks.

>
> > So I can have:

>
> > If Area = ("Six" AND SubsQuestions = "Yes") or (Area = "Seven" AND
> > SubsQuestions = "Yes") Then
> > 'Do stuff
> > Else
> > 'Do not
> > End If

>
> No, that is not possible - the first parenthesis is in the wrong location:
> it needs to be infront of Area:
>
> If (Area = "Six" AND SubsQuestions = "Yes") or _
> (Area = "Seven" AND SubsQuestions = "Yes") Then
>
> It's also too verbose. This does exactly the same thing (the commutative
> property applies to boolean operators as well as arithmetic operators):
>
> If (Area = "Six" or Area = "Seven") AND SubsQuestions = "Yes" Then
>
> --
> Microsoft MVP - ASP/ASP.NET
> Please reply to the newsgroup. This email account is my spam trap so I
> don't check it very often. If you must reply off-line, then remove the
> "NO SPAM"


Whoops that was a typo, however, your last solution is the neatest -
thanks Bob

Jon
 
Reply With Quote
 
Evertjan.
Guest
Posts: n/a
 
      11-17-2007
McKirahan wrote on 17 nov 2007 in
microsoft.public.inetserver.asp.general:

> Yes; though your first set of parentheses is wrong.
> Also, for readability, take a look at this:
>
> If (SubsQuestions = "Yes" And Area = "Six") _
> Or (SubsQuestions = "Yes" And Area = "Seven") Then
> 'Do stuff
> Else
> 'Do not
> End If
>


I prefer for readability:

SQy = SubsQuestions = "Yes"
A6 = Area = "Six"
A7 = Area = "Seven"

If SQy AND (A6 OR A7) Then
'Do stuff
Else
'Do not
End If

or:

SQy = SubsQuestions = "Yes"
A6 = Area = "Six"
A7 = Area = "Seven"
A6orA7 = A6 OR A7

If SQy AND A6orA7 Then
'Do stuff
Else
'Do not
End If


--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
 
Reply With Quote
 
ThatsIT.net.au
Guest
Posts: n/a
 
      11-18-2007

"Evertjan." <> wrote in message
news:Xns99EBC912567ACeejj99@194.109.133.242...
> McKirahan wrote on 17 nov 2007 in
> microsoft.public.inetserver.asp.general:
>
>> Yes; though your first set of parentheses is wrong.
>> Also, for readability, take a look at this:
>>
>> If (SubsQuestions = "Yes" And Area = "Six") _
>> Or (SubsQuestions = "Yes" And Area = "Seven") Then
>> 'Do stuff
>> Else
>> 'Do not
>> End If
>>

>
> I prefer for readability:
>
> SQy = SubsQuestions = "Yes"
> A6 = Area = "Six"
> A7 = Area = "Seven"
>
> If SQy AND (A6 OR A7) Then
> 'Do stuff
> Else
> 'Do not
> End If
>
> or:
>
> SQy = SubsQuestions = "Yes"
> A6 = Area = "Six"
> A7 = Area = "Seven"
> A6orA7 = A6 OR A7
>
> If SQy AND A6orA7 Then
> 'Do stuff
> Else
> 'Do not
> End If
>


To use a bit of both your suggestions
testQ = (SubsQuestions = "Yes")
test6 = (Area = "Six")
test7 = (Area = "Seven")

IF testQ then
IF test6 OR test7 THEN
'Do stuff
END IF
ELSE
'Do not
END IF





>
> --
> Evertjan.
> The Netherlands.
> (Please change the x'es to dots in my emailaddress)


 
Reply With Quote
 
ThatsIT.net.au
Guest
Posts: n/a
 
      11-23-2007

"McKirahan" <> wrote in message
news:. ..
> "ThatsIT.net.au" <me@thatsit> wrote in message
> news:67AA2DFD-4317-4A5D-8BDD-...
>>
>> "Evertjan." <> wrote in message
>> news:Xns99EBC912567ACeejj99@194.109.133.242...

>
> [snip]
>
>> >
>> > I prefer for readability:
>> >
>> > SQy = SubsQuestions = "Yes"
>> > A6 = Area = "Six"
>> > A7 = Area = "Seven"
>> >
>> > If SQy AND (A6 OR A7) Then
>> > 'Do stuff
>> > Else
>> > 'Do not
>> > End If

>
> [snip]
>
>> To use a bit of both your suggestions
>> testQ = (SubsQuestions = "Yes")
>> test6 = (Area = "Six")
>> test7 = (Area = "Seven")
>>
>> IF testQ then
>> IF test6 OR test7 THEN
>> 'Do stuff
>> END IF
>> ELSE
>> 'Do not
>> END IF

>
> Sorry, that's not equivalent;you don't handle:
> IF test6 OR test7 THEN's ELSE



yes it is,

first subquerys must be true or it fails, only if subquerys is true need we
test test6 or test7

 
Reply With Quote
 
ThatsIT.net.au
Guest
Posts: n/a
 
      11-25-2007

"McKirahan" <> wrote in message
news:. ..
> "ThatsIT.net.au" <me@thatsit> wrote in message
> news:0B03165D-385B-490C-AB08-...
>>
>> "McKirahan" <> wrote in message
>> news:. ..
>> > "ThatsIT.net.au" <me@thatsit> wrote in message
>> > news:67AA2DFD-4317-4A5D-8BDD-...
>> >>
>> >> "Evertjan." <> wrote in message
>> >> news:Xns99EBC912567ACeejj99@194.109.133.242...
>> >
>> > [snip]
>> >
>> >> >
>> >> > I prefer for readability:
>> >> >
>> >> > SQy = SubsQuestions = "Yes"
>> >> > A6 = Area = "Six"
>> >> > A7 = Area = "Seven"
>> >> >
>> >> > If SQy AND (A6 OR A7) Then
>> >> > 'Do stuff
>> >> > Else
>> >> > 'Do not
>> >> > End If
>> >
>> > [snip]
>> >
>> >> To use a bit of both your suggestions
>> >> testQ = (SubsQuestions = "Yes")
>> >> test6 = (Area = "Six")
>> >> test7 = (Area = "Seven")
>> >>
>> >> IF testQ then
>> >> IF test6 OR test7 THEN
>> >> 'Do stuff
>> >> END IF
>> >> ELSE
>> >> 'Do not
>> >> END IF
>> >
>> > Sorry, that's not equivalent;you don't handle:
>> > IF test6 OR test7 THEN's ELSE

>>
>>
>> yes it is,
>>
>> first subquerys must be true or it fails, only if subquerys is true need

> we
>> test test6 or test7

>
> Sorry, it's not.
>
> If the second test fails you do not perform "Do not".
>
> IF testQ then
> IF test6 OR test7 THEN
> 'Do stuff
> ELSE <= you don't allow for this
> 'Do not
> END IF
> ELSE
> 'Do not
> END IF
>


OK I see what you mean, my error

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Syntax Checker that's better than the normal syntax checker Jacob Grover Ruby 5 07-18-2008 05:07 AM
Syntax error? What syntax error? Assignment fo default values? Mark Richards Perl Misc 3 11-18-2007 05:01 PM
Syntax bug, in 1.8.5? return not (some expr) <-- syntax error vsreturn (not (some expr)) <-- fine Good Night Moon Ruby 9 07-25-2007 04:51 PM
[ANN] SqlStatement 1.0.0 - hide the syntax of SQL behind familiarruby syntax Ken Bloom Ruby 3 10-09-2006 06:46 PM
Syntax highligth with textile: Syntax+RedCloth ? gabriele renzi Ruby 2 12-31-2005 02:44 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57