SILS iSchool

23 Oct 2018

Value Added | daily

Class Schedule

Basics | sessions 01-05

21 Aug | intro
23 Aug | clients
28 Aug | servers
30 Aug | networks
04 Sep | basics lab

Web Development | sessions 06-11

06 Sep | structural layer
11 Sep | presentational layer
18 Sep | working with layers
20 Sep | behavior layer
25 Sep | images & design
27 Sep | website lab

Document Markup | sessions 12-14

02 Oct | object layers
02 Oct | graphics
09 Oct | document markup lab

Spreadsheets | sessions 15-19

11 Oct | spreadsheets, formulas & functions
16 Oct | thoughts about data display
 18 Oct  | Fall Break 

23 Oct | database tools | database practice exercises | live database practice | next session

25 Oct | spreadsheets lab

Relational Database | sessions 20-26

30 Oct | relational databases
01 Nov | tables
06 Nov | relationships
08 Nov | input & output
13 Nov | SQL
15 Nov | complex queries
20 Nov | databases lab
 22 Nov | Thanksgiving 

Presentation | sessions 27-30

27 Nov | presentation design
29 Nov | presentation delivery
04 Dec | presentation lab
13 Dec | 0800-1100 | final in class presentation





The Department of Defense reports casualty data using downloadable Excel spreadsheets.

Practice with the some current data

The Department of Defense reports casualty data in spreadsheets form.

Download a spreadsheet and try out your database tools with it.

You might try sorting the data first by service, then by component, then occupation code prefix, and then by occupation code.

You might also try different filters

  • since the header row is not in the first row, be certain to select the actual header row so the filter tool knows where to apply the filter
  • do a simple filter by state
  • do a combined filter by service and then by state
  • do a custom filter to see how many of the names of are people between 18 and 22 years old
  • do a custom filter to see Hispanic names
    • this isn't a precise filter, but you might do a Boolean "or" filter looking for names that end in either "A" or "Z"
    • on second thought, that won't work? Can you see why not?
      • the data isn't arrayed so that you can easily filter on the last letter of the name.
      • were the data arrayed so that the last name was a field unto itself, one could apply this filter
      • or one can filter on Column T

so create some custom filters of your own, looking for record fields that respond to an "or" or an "and" combination of values

back to top