Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I used three dimensions:
- Pull: T-shirt, Polo
- Color: Red, Yellow, Blue, Green
-CTC: size 5, size 7....
***The Pull = T-shirt & Color = Green did not have value but Pull = Polo & Color = Green had value as below
I need output template must have T-shirt with Green label as below (I tried all settings: Show All & Suppress, Populate Missing Cells....)
Any suggestion is much appreciate.
Thanks
|
---|
Hi Thach,
There are no records for "Green" for T-Shirt. For that reason it will not come in report even if "suppress null" option is disabled.
Hi ,
Is your requirement is something like Highlighting the "0" values where ever it is possible or only when the Green have the same?
-Jai
In Script, you can add Color which are not available for CTC.
You can use the below code
InsertValue:
LOAD CTC,
Color,
Size,
Qty,
CTC&Color as Key
FROM
(ooxml, embedded labels, table is [Sample data]);
Temp1:
Load distinct
CTC,
Size
Resident InsertValue;
Join(Temp1)
LOAD * INLINE [
Color
Red,
Yellow,
Blue,
Green
];
Concatenate(InsertValue)
Load * where not Exists(Key);
Load Distinct
CTC,
Size,
Color,
CTC&Color as Key
Resident Temp1;
Drop Table Temp1;
Great!
That is what I need, Rupam.
@All: thanks for all your kind reply.