I am going to use Tabledefs().Fields().Delete in VBA code to delete all columns in certain tables that contain all null values (I must do this at runtime as tables are created). What I need is to get a list from Access (query, command, property????) of the fields that sum to null so that I can put them into an array and use a for... next loop to cycle through the above line of code to delete them. Can anyone tell me what creative way I can use to obtain the field names for all fields in a table that sum to null? Thanks in advance.