Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is it possible create dimension based on field values and my values.
So I have field with suppliers and I need dimension with suppliers plus few group of suppliers
Create a new table in your data model
Something like this; and then use SupplierGroup to filter
Supplier_Group:
Load * inline
[
Supplier,SupplierGroup
A,A
A, All
A, AllWithoutB
B,B
B,BAndD
….
];
No. In this example I need valuelist(a,b,c,d,D1,D2)
Can you share some sample for this.
For example, I have suppliers A,B,C,D.
So I need follow values in my dimension: A,B,C,D, All,All without B, B and D
Create a new table in your data model
Something like this; and then use SupplierGroup to filter
Supplier_Group:
Load * inline
[
Supplier,SupplierGroup
A,A
A, All
A, AllWithoutB
B,B
B,BAndD
….
];
Dear ,
You can use
Dimension: ValueList('A','B','C','D','All','All without B','B and D')
Expression:
Pick(Match(ValueList('A','B','C','D','All','All without B','B and D'),'A','B','C','D','All','All without B','B and D'),
[Expression for A],
[Expression for B],
[Expression for C],
[Expression for D],
[Expression for All],
[Expression for All without B],
[Expression for B and D]
)
Else Share sample File we will help you in a better way,
Thanks,
Mukram.
Thx, I think it must work
Problem in this, that I have too much suppliers
That's why I find way to get value list like valuelist(suppliers,all,all without a, b and d)