Sorry but the question is very much unclear to me. What do you mean by subtract the column? Do you want to remove it or perform the arithmetic operation of subtraction among the mentioned columns. I will edit this answer accordingly.
You could create a bash (shell) script with 'awk' commands to do this. Ideally, extract each column from file and put into temp files, then use 'paste' to combine temp files, then final 'awk' command to perform subtraction, you can also include commands to clean up temp files etc within the shell script.