Untested since you didn't provide any sample input and expected output but it LOOKS like this is what you're trying to do:
awk -v args="$@" '
BEGIN {
FS = ","
OFS = ", "
n = split(args,argA)
for (i=1; i<=n; i++) {
arg = argA[i]
match(arg,/[[:alpha:]]+/)
areacode = substr(arg,RSTART,RLENGTH)
ARGV[++ARGC] = tolower(areacode) ".csv"
postcodes[ARGC] = "\"" toupper(arg) "\""
}
}
FNR == 1 { pcode = postcodes[++argInd] }
$1 == pcode { print $1, $3, $4 }
'
If you use GNU awk then you can use ARGIND instead of ++argInd.
Again it's hard to say without some sample input but the above can be made more efficient if you have the same areacodes and/or postcodes repeated in your input. In particular the areacodes files could each be searched just once for all postcodes they could contain.