What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » Excel Functions, HELLLP, PLZ

Excel Functions, HELLLP, PLZ
Author: Message:
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: Excel Functions, HELLLP, PLZ
No, it will NOT return the correct result...

Please read my posts carefully, and notice the colored, bold or underlined parts!!!

quote:
Originally posted by CookieRevised
Like first said by Z_Joanna_ZZZ and corrected by me:
* number of cells in range A1:A55 which have a value between 8 and 10 (thus excl. 8 and 10):
=COUNTIF(A1:A55;">8")-COUNTIF(A1:A55;">=10")

* number of cells in range A1:A55 which have a value from 8 till 10 (thus incl. 8 and 10):
=COUNTIF(A1:A55;">=8")-COUNTIF(A1:A55;">10")
notice the red and blue parts ;)



if the range is:
  5.77
  6.45
  8.00
  8.16
  9.51
  10.00
  10.78

the first formula:
=COUNTIF(A1:A55;">8") - COUNTIF(A1:A55;">=10")
=4 - 2
=2
(because only 8.16 and 9.51 are numbers between 8 and 10)

the second formula:
=COUNTIF(A1:A55;">=8") - COUNTIF(A1:A55;">10")
=5 - 1
=4
(because 8.00, 8.16, 9.51 and 10.00 are numbers from 8 till 10, inclusief 10)

your formula:
=COUNTIF(A1:A55;">=8")-COUNTIF(A1:A55;">=10")
=5 - 2
=3 (thus wrong)
=the amount of numbers from 8 (thus incl. 8) to 10 (thus excl. 10)

">" means bigger then. This means that ">8" means bigger then 8... 8 is not bigger then 8 but equal... Thus 8 will not be counted...

">=" means bigger then or equal to. This means that ">=8" means bigger then 8 or equal to 8... Thus 8 will be counted...

This post was edited on 03-03-2005 at 12:12 AM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
03-02-2005 11:51 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Excel Functions, HELLLP, PLZ - by M73A on 03-01-2005 at 10:08 PM
RE: Excel Functions - by Joa on 03-01-2005 at 11:03 PM
RE: Excel Functions, HELLLP, PLZ - by M73A on 03-01-2005 at 11:19 PM
RE: Excel Functions, HELLLP, PLZ - by Joa on 03-01-2005 at 11:30 PM
RE: Excel Functions, HELLLP, PLZ - by M73A on 03-01-2005 at 11:31 PM
RE: Excel Functions - by CookieRevised on 03-01-2005 at 11:44 PM
RE: Excel Functions, HELLLP, PLZ - by M73A on 03-02-2005 at 07:40 AM
RE: Excel Functions, HELLLP, PLZ - by The_Thief on 03-02-2005 at 07:39 PM
RE: Excel Functions, HELLLP, PLZ - by M73A on 03-02-2005 at 08:09 PM
RE: Excel Functions, HELLLP, PLZ - by saralk on 03-02-2005 at 08:22 PM
RE: Excel Functions, HELLLP, PLZ - by The_Thief on 03-02-2005 at 08:27 PM
RE: Excel Functions, HELLLP, PLZ - by M73A on 03-02-2005 at 09:49 PM
RE: RE: Excel Functions, HELLLP, PLZ - by CookieRevised on 03-02-2005 at 11:44 PM
RE: RE: RE: Excel Functions, HELLLP, PLZ - by M73A on 03-02-2005 at 11:47 PM
RE: Excel Functions, HELLLP, PLZ - by CookieRevised on 03-02-2005 at 11:51 PM
RE: Excel Functions, HELLLP, PLZ - by jren207 on 03-03-2005 at 12:16 AM
RE: Excel Functions, HELLLP, PLZ - by M73A on 03-03-2005 at 07:45 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On