I'm completely lost on this one. I am querying from linked Oracle tables and cannot change any of the data.
I am grouping by "Prod_Code". The problem is that I have one field in my table that may or may not have data, "Country".
What I am getting is one record for each "Prod_Code" that does have data in "Country" and another for those where the field "Country" is blank.
I am required to show only one record in my query per "Prod_Code" and need to ignore the "Country" field in order to combine the records.
Trying to do something like
IIf "Prod_Code" is duplicate, THEN ignore where "Country" Is Null.
Thanks!
I am grouping by "Prod_Code". The problem is that I have one field in my table that may or may not have data, "Country".
What I am getting is one record for each "Prod_Code" that does have data in "Country" and another for those where the field "Country" is blank.
I am required to show only one record in my query per "Prod_Code" and need to ignore the "Country" field in order to combine the records.
Trying to do something like
IIf "Prod_Code" is duplicate, THEN ignore where "Country" Is Null.
Thanks!