Create a report with new row for comma separated concatenated calculated field
I have a multi-select field - ProductType. This allows the user to select the type of product they are requesting for (example: Prod 1, Prod 2, Prod 3..... Prod 25) . Based on this selection ProductQuantity field is displayed where they include the quantity of each product (single text fields - ProdQty1, ProdQty2... ProdQty25). The quantity field is displayed using display logic based on product selection in 'ProductType.
I have created 2 calculated fields
1) 'ProductType_Calc' that concatenates the selected 'ProductType' and
2) 'ProdQty_Calc' that concatenates the quantity of selected 'ProductType'
I now want to create a report where I can see the list of ProductType and ProdQty for every project in separate rows. I can see it as a list but the requirement is to have it in separate rows. Can you help how I can achieve this?
Example:
Project 1:
ProductType - Prod1, Prod3, Prod7
ProdQty1 - 5; ProdQty3 - 2; ProdQty7 - 1
Project 2:
ProductType - Prod4, Prod7, Prod16, Prod24
ProdQty4 - 1; ProdQty7 - 3; ProdQty16 - 2; ProdQty24 - 12
The report I want to see is:
Project Name ProductType ProdQty
Project 1 Prod1 5
Project 1 Prod3 2
Project 1 Prod7 1
Project 2 Prod4 1
Project 2 Prod7 3
Project 2 Prod16 2
Project 2 Prod24 12