Here is my massive final command:
find . -name "*.csv" -exec echo {} \; -exec head -n 21 {} \; | cut -c -70 | grep 2018 | grep -v DATE | grep -v UTEND
The beautiful parts of this were: 1) two -exec functions for my find command. Yep you can do that. 2) The cut command 3) a chain of greps to get the date and cut out other lines that had the date that I didn't want.