Select distinct values - Script Logic
Hi. I have a member in the dimention called serviceType, i what to execute the comand *select but with the distinct criteria. Something like *SELECT(%MYVAR%,[ID],"PRODUCTS","DISTINCT ID") Does anyone...
View ArticleRe: Select distinct values - Script Logic
Hi Leandro, If you want to use *SELECT with a distinct criteria, you'll have to create first a property within that dimension which will be use as filter. Let's say you have a property in your...
View ArticleRe: Select distinct values - Script Logic
Hi Leandro Your script transalated to SQL like this select id from mbrproducts where distinct id << this is not a proper query and select distinct can't be fulfilled in BPC script by using...
View ArticleRe: Select distinct values - Script Logic
Hi Leandro, What I did not understand here is that why do you want "DISTINCT" keyword on your ID. ID, by itself is the primary key and no 2 records will have same IDs. So, ID itself is DISTINCT....
View Article