This can be achieved by editing Format table macro in print template.
In order to delete/restrict columns from print template we need to edit format table macro in print template.
For example:
1. To delete the mi_key column, use the following line:
selRange.Tables(1).Columns(1).Delete
2. To delete the second column from print template, add the following line:
selRange.Tables(1).Columns(2).Delete
This entry will not print the mentioned column for all the databinds table in print template.

In order to delete/restrict columns from print template we need to edit format table macro in print template.
For example:
1. To delete the mi_key column, use the following line:
selRange.Tables(1).Columns(1).Delete
2. To delete the second column from print template, add the following line:
selRange.Tables(1).Columns(2).Delete
This entry will not print the mentioned column for all the databinds table in print template.
UPDATED:
August 24, 2017