Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have 4 dimensions in my main table that I need to group.
1. Apple
2. mango
3. Pineapple
4. Banana.
I need to group all of these as "fruits". How do i do it in the scrpit?
In the script:
if(wildmatch(YourFieldName, '*apple', 'mango', 'banana'), 'Fruit', YourFieldName) as YourNewFieldName
(Here *apple covers both apple and pineapple)
Have you looked into the CrossTable() function?
I have but I cant seem to work my way around on this. Are you ok to provide some guidance?
In the script:
if(wildmatch(YourFieldName, '*apple', 'mango', 'banana'), 'Fruit', YourFieldName) as YourNewFieldName
(Here *apple covers both apple and pineapple)