Is there a way to create a metric that joins/appends values from two separate transaction lists?
List 1 would for example be most popular colour by product and month in 2022 and List 2 would have most popular colour by product and month in 2023. In my metric I want to join the two into a single metric.
The values are dimensions, i.e. not amounts. Using a + works when working with amounts
List1.Quantitytby lastnonblank: List1.ProductID, List1.Month]
+
List2.Quantitytby lastnonblank: List2.ProductID, List2.Month]
but doing this with dimensions gives me an error:
Error: Arithmetic operators only accepts same type arithmetic inputs after implicit casting, received Dimension (Competence) operands
The reason I’m not using the same list for everything is due to List 2 having additional data that wasn’t available when we built the original model, and it having an automated import. And I’m trying to find shortcuts to avoid having to rebuild everything :)