Just an idea - You can set a flag based on whether or not the field has a null value. Then reload the resident table and use the flag to determine whether or not to include or exclude it. In your example above, you could do something like:
TestTable: Load Field, Period, if (not isnull(Field),'Y','N') as Field_Has _Value From ???.QVD;
TestTable2: Load Field, Period Resident TestTable;
Left Join Load Field, Field_Has_Value Resident TestTable Where Field_Has_Value = 'Y';
FinalTable: Load Field, Period Resident TestTable2 Where Field_Has_Value = 'Y';
I have not tested this code but it should give you all Field/Period combinations where Field has a value in at least one period.