Another silly question, but I have tried several options and not managed to do this;
I need a Value List which only contains the Distinct Company where a Date field in the same table is not null
Value List based on a Company
Select Distinct
Company
From
Table One
This works OK
Value List based on a Company AND where data exists in another field is my problem
Select Distinct
Company
From
Table One
Where Date_in field is not null
Can't get it to work.
Any propmpts or ideas?