Please advice on this!
I have Module 1 with the dimensions: Product_XYZ (Numbered list), Location
The line item in this module is 'Order Quantity' and the Product_XYZ subset list contains Products A, B, and C.
I also have Module 2 with these dimensions: Product_LMN (Numbered list), Location
The line item in this module is also 'Order Quantity', and the Product_LMN list contains Products D, E, F, and G .
Requirement
I need to calculate a ratio where:
- Ratio for Product D = Order Quantity for Product D / Order Quantity for Product A
- Similarly, Ratio for Product E = Order Quantity for Product E / Order Quantity for Product A
Attempted Solution
To achieve this, I created Module 3 with dimensions: Product_LMN , Location
In Module 3, I added the following line items:
- 'Order Qty for Product_LMN': Pulled values from Module 2.
- Dimensioned this line item with 'Product-XYZ and Location'
Order QTY for Product A'
IF ITEM(Product_XYZ) = 'Product.A' THEN 'Order Quantity' ELSE 0However, Anaplan threw an error:
"Product A is not a recognized line item or list member."
Request
What is the correct way to pull the order quantity for Product A from Module 1 into Module 3 and use it for the ratio calculation?