Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.programming
external usenet poster
 
Posts: 6
Default Create a table from raw data

Raw Data

Total Time(Minutes)
5.4
6.5
5.8
8.1
5.6
6.2
4.2
5.1
6.1

From the above raw data how do I create a table as below ?

Total Time Range(Minutes) No of count
< 4 0
4.0 - 4.9 1
5.0 - 5.9 4
6.0 - 6.9 3
7 1


Total 9

Regards,
Tee
  #2   Report Post  
Posted to microsoft.public.excel.programming,microsoft.public.excel
external usenet poster
 
Posts: 11,058
Default Create a table from raw data

In B1 thru B5 enter:

=COUNTIF(A:A,"<4")
=COUNTIF(A:A,"<4.9")-COUNTIF(A:A,"<4")
=COUNTIF(A:A,"<5.9")-COUNTIF(A:A,"<5")
=COUNTIF(A:A,"<6.9")-COUNTIF(A:A,"<6")
=COUNTIF(A:A,"7")

--
Gary''s Student - gsnu2007j


"Eng Teng" wrote:

Raw Data

Total Time(Minutes)
5.4
6.5
5.8
8.1
5.6
6.2
4.2
5.1
6.1

From the above raw data how do I create a table as below ?

Total Time Range(Minutes) No of count
< 4 0
4.0 - 4.9 1
5.0 - 5.9 4
6.0 - 6.9 3
7 1


Total 9

Regards,
Tee

  #3   Report Post  
Posted to microsoft.public.excel.programming,microsoft.public.excel
external usenet poster
 
Posts: 2,836
Default Create a table from raw data

Enter the below function into an adjacent cell, and then fill down:
=IF(A2="","",SUM($A$2:A2)-A2+1&IF(A2=1,""," - "&SUM($A$2:A2)))

Regards,
Ryan---

--
RyGuy


"Gary''s Student" wrote:

In B1 thru B5 enter:

=COUNTIF(A:A,"<4")
=COUNTIF(A:A,"<4.9")-COUNTIF(A:A,"<4")
=COUNTIF(A:A,"<5.9")-COUNTIF(A:A,"<5")
=COUNTIF(A:A,"<6.9")-COUNTIF(A:A,"<6")
=COUNTIF(A:A,"7")

--
Gary''s Student - gsnu2007j


"Eng Teng" wrote:

Raw Data

Total Time(Minutes)
5.4
6.5
5.8
8.1
5.6
6.2
4.2
5.1
6.1

From the above raw data how do I create a table as below ?

Total Time Range(Minutes) No of count
< 4 0
4.0 - 4.9 1
5.0 - 5.9 4
6.0 - 6.9 3
7 1


Total 9

Regards,
Tee

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
Create chart using part of data table (data legend) Koulla Charts and Charting in Excel 0 October 21st 09 08:17 AM
Create a toplist from data in table [email protected] Excel Discussion (Misc queries) 0 October 14th 06 01:50 AM
how to create a table given data... aidenkun via OfficeKB.com Excel Discussion (Misc queries) 2 July 11th 05 07:20 PM
How do I create a one variable data table? Prelll91 Excel Discussion (Misc queries) 1 February 27th 05 07:48 PM
How do I create a one variable data table? prelll91 Excel Discussion (Misc queries) 0 February 27th 05 07:47 PM


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

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"