Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Computing > Computer Support > -Excel Formula Question

Reply
Thread Tools

-Excel Formula Question

 
 
Katherine Colby
Guest
Posts: n/a
 
      01-12-2004
I'm trying to create an IF state like the one below to specify a
number "Between 0 & 180". Here is the formula that is incorrect. Can
anyone show me the correct syntax for the formula?

What I'm trying to say is"

If H3-C3 is greater than 0, but less than 180, L3-G3, otherwise leave
the cell blank.

=IF((H3-C3),>0&<180,(L3-G3)," ")

Thanks!
 
Reply With Quote
 
 
 
 
Brian H¹©
Guest
Posts: n/a
 
      01-12-2004
Katherine Colby said:

> I'm trying to create an IF state like the one below to specify a
> number "Between 0 & 180". Here is the formula that is incorrect. Can
> anyone show me the correct syntax for the formula?
>
> What I'm trying to say is"
>
> If H3-C3 is greater than 0, but less than 180, L3-G3, otherwise leave
> the cell blank.
>
> =IF((H3-C3),>0&<180,(L3-G3)," ")
>
> Thanks!


If Excel was "intelligent", Lieutenant Commander Data would have been named
Sub-Ensign ( ensign/standard ) Info.


 
Reply With Quote
 
 
 
 
Alexander Rogge
Guest
Posts: n/a
 
      01-12-2004
> I'm trying to create an IF state like the one below to specify a
> number "Between 0 & 180".
>
> If H3-C3 is greater than 0, but less than 180, L3-G3, otherwise leave
> the cell blank.


=IF((H3-C3)<180 AND (H3-C3)>0;(L3-G3);"")

 
Reply With Quote
 
marcus@myrealbox.com
Guest
Posts: n/a
 
      01-12-2004

On Mon, 12 Jan 2004 02:35:19 GMT, Katherine Colby <>
wrote:

>=IF((H3-C3),>0&<180,(L3-G3)," ")


The & is only used for connecting pieces of text.

The correct formula should be:

=IF(AND(H3-C3>0,H3-C3<180),(L3-G3)," ")

Hope this helps

regards
Marcus

 
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
Question about representing formula in C++ Teddy C++ 1 11-22-2011 01:16 PM
Heat_Index calculation in my C program; question about formula Barry L. Bond C Programming 26 11-17-2008 04:36 PM
Excel Formula Question VertiCody Microsoft Certification 0 10-27-2008 10:52 PM
70-293 question: correct subnetting formula M D MCSE 10 09-25-2006 08:27 PM
Formula Question =?Utf-8?B?R0c=?= Microsoft Certification 1 04-28-2006 02:25 PM



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