Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions analyze_cars_by_country.fex
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
-* analyze_cars_by_country.fex
-* Report: Car models by country of origin using the CAR demo file.
-* Shows count of models per country, with a breakdown by car model.

TABLE FILE CAR
HEADING
"Car Models by Country of Origin"
" "
PRINT
MODEL/A20 AS 'Model'
BY
COUNTRY/A20 AS 'Country'
BY
CAR/A20 AS 'Make'
ON COUNTRY SUBHEAD
"Country: <COUNTRY"
ON COUNTRY SUBTOTAL CNT.MODEL AS 'Total Models'
ON COUNTRY PAGE-BREAK
WHERE RECORDLIMIT EQ 0
END