Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default frequency function with decimals

I have a set of 365 different numbers and some of the numbers are decimals
(i.e.: 921.74). How do I use the frequency function to determine how many
numbers in my set fall into certain categories that I want to create. For
example, if I want my category to include all the numbers in my set greater
than but not equal to 110 and less than but not equal to 230 and some of the
numbers in my set are decimals how do I do this???????????????
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default frequency function with decimals

One way:

=COUNTIF(A1:A365,"110")-COUNTIF(A1:A365,"=230")

Or, using cells to hold the boundaries:

C1 = 110
D1 = 230

=COUNTIF(A1:A365,""&C1)-COUNTIF(A1:A365,"="&D1)


--
Biff
Microsoft Excel MVP


"frequency function with decimals" <frequency function with
wrote in message
...
I have a set of 365 different numbers and some of the numbers are decimals
(i.e.: 921.74). How do I use the frequency function to determine how many
numbers in my set fall into certain categories that I want to create. For
example, if I want my category to include all the numbers in my set
greater
than but not equal to 110 and less than but not equal to 230 and some of
the
numbers in my set are decimals how do I do this???????????????



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default frequency function with decimals

=SUM(COUNTIF(A1:A365,{"110","=230"})*{1,-1})


"frequency function with decimals" wrote:

I have a set of 365 different numbers and some of the numbers are decimals
(i.e.: 921.74). How do I use the frequency function to determine how many
numbers in my set fall into certain categories that I want to create. For
example, if I want my category to include all the numbers in my set greater
than but not equal to 110 and less than but not equal to 230 and some of the
numbers in my set are decimals how do I do this???????????????

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Frequency Function Strimkind Excel Worksheet Functions 3 October 26th 07 08:59 PM
Function to ignore decimals Poliisi Excel Worksheet Functions 1 September 6th 05 09:03 PM
a function on decimals chartasap Excel Worksheet Functions 8 July 5th 05 06:51 PM
Frequency function Pritesh Excel Discussion (Misc queries) 2 April 18th 05 09:53 PM
Using FREQUENCY Function to Count Sergio Excel Worksheet Functions 1 April 11th 05 05:16 PM


All times are GMT +1. The time now is 10:07 AM.

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

About Us

"It's about Microsoft Excel"