I have a rather large transaction list (roughly 5M rows) with several dimensions. I need to map the combination of these unique dimensions to assign my data into user managed groupings. To do that, I need to do a 2 part calculation by first concatenated the various dimensions and then matching it to the grouped dimension.
MATCH(
'_ Subscriber Activity'.'Account Type'.Name &"-"& '_ Subscriber Activity'.'Product Group'.Name &"-"& '_ Subscriber Activity'.'Product Subscribe Group'.Name &"-"& '_ Subscriber Activity'.'Device Sub Cohort'.Name &"-"& '_ Subscriber Activity'.'Device Type Cohort'.Name &"-"& '_ Subscriber Activity'.'Marketplace Cohort'.Name &"-"& '_ Subscriber Activity'.'Customer Subscribe Category'.Name,
'_ Product Attributes'.Name)
The problem is that I get an error that is: “Product Attributes: Formula timed out (> 3 minutes)”. I’m not sure how to work around this error with a more optimized approach. Any help will be much appreciated.
Kevin