I have a list of names and email addresses (formatting below) and need to pull back only the names portion, and I need them to be in a distinct list to populate in a parameter.
Current List
- Jane Doe ([email protected])
- Jane Doe ([email protected])
- Jane Doe ([email protected])
- John Smith ([email protected])
- John Smith ([email protected])
Desired List
- Jane Doe
- John Smith
Since the data source is an SSAS OLAP cube I cannot write a "select distinct" query within my dataset. Instead I am limited to using the Query Designer via a shared data source connected to the cube.
Has anyone else ever run into anything like this and found a solution? I've been looking all over and can't find anything.
Any help would be appreciated!
Thanks