A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Count 2



 
 
Thread Tools Display Modes
  #1  
Old November 7th, 2005, 03:26 PM
KAnoe
external usenet poster
 
Posts: n/a
Default Count 2

I would like to count the Text A-1 and B-2E I know how to count just the one
as seen here =Abs(Sum([FTE Cat]="A-1")) I have tried =Abs(Sum([FTE Cat]="A-1"
or "B2E")) and it does not work. It gives me a total of 7. The 7 is all the
records.

Thanks Keith
  #2  
Old November 7th, 2005, 03:49 PM
Ofer
external usenet poster
 
Posts: n/a
Default Count 2

I think that what you trying to do is that

=Sum(Abs([FTE Cat]="A-1"))

You need to swop between the abs and the sum

--
The next line is only relevant to Microsoft''s web-based interface users.
If I answered your question, please mark it as an answer. It''s useful to
know that my answer was helpful
HTH, good luck


"KAnoe" wrote:

I would like to count the Text A-1 and B-2E I know how to count just the one
as seen here =Abs(Sum([FTE Cat]="A-1")) I have tried =Abs(Sum([FTE Cat]="A-1"
or "B2E")) and it does not work. It gives me a total of 7. The 7 is all the
records.

Thanks Keith

  #3  
Old November 7th, 2005, 04:30 PM
'69 Camaro
external usenet poster
 
Posts: n/a
Default Count 2

Hi, Keith.

Is it B-2E or B2E? You've listed both. I'll go with B-2E in the example
below.

Try:

=Abs(Sum([FTE Cat]="A-1")) + Abs(Sum([FTE Cat]="B-2E"))

In this case, Abs(Sum(BooleanValue)) = Sum(Abs(BooleanValue), so swapping
these two functions in the expression will result in the same value.
Therefore, they're interchangeable.

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips.

(Please remove ZERO_SPAM from my reply E-mail address so that a message will
be forwarded to me.)
- - -
If my answer has helped you, please sign in and answer yes to the question
"Did this post answer your question?" at the bottom of the message, which
adds your question and the answers to the database of answers. Remember that
questions answered the quickest are often from those who have a history of
rewarding the contributors who have taken the time to answer questions
correctly.


"KAnoe" wrote:

I would like to count the Text A-1 and B-2E I know how to count just the one
as seen here =Abs(Sum([FTE Cat]="A-1")) I have tried =Abs(Sum([FTE Cat]="A-1"
or "B2E")) and it does not work. It gives me a total of 7. The 7 is all the
records.

Thanks Keith

  #4  
Old November 7th, 2005, 05:01 PM
John Vinson
external usenet poster
 
Posts: n/a
Default Count 2

On Mon, 7 Nov 2005 07:26:02 -0800, "KAnoe"
wrote:

I would like to count the Text A-1 and B-2E I know how to count just the one
as seen here =Abs(Sum([FTE Cat]="A-1")) I have tried =Abs(Sum([FTE Cat]="A-1"
or "B2E")) and it does not work. It gives me a total of 7. The 7 is all the
records.

Thanks Keith


The Access operators AND and OR look like the English language
conjunctions - but they're not. They are Boolean operators, just as +
and - are arithmatic operators.

X AND Y

will return the value TRUE if X evaluates to a TRUE expression, and Y
also evaluates to True. Otherwise it returns FALSE.

X OR Y

will return the value TRUE if either X is true, or Y is true, or both
are true; it will return FALSE if both X and Y are FALSE.

So the expression

[FTE Cat]="A-1" OR "B2E"

will always be TRUE; the expression "B2E" is not equal to zero, so
Access treats it as TRUE.

Use

[FTE Cat] = "A-1" OR [FTE Cat] = "B2E"

instead.

John W. Vinson[MVP]
 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Count Position of Filtered TEXT cells in a column Sam via OfficeKB.com Worksheet Functions 8 May 18th, 2005 04:23 AM
Pivot Table Access 2000? Air-ron General Discussion 2 October 29th, 2004 06:19 PM
SUBTOTAL Second Count / sub-count of Filtered Visible Cells QTE General Discussion 16 August 4th, 2004 04:47 PM
Distinct Report Count Ben Setting Up & Running Reports 2 August 3rd, 2004 08:38 PM
SUBTOTAL Second Count / sub-count of Filtered Visible Cells QTE Worksheet Functions 0 July 27th, 2004 08:47 PM


All times are GMT +1. The time now is 11:08 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.