Forum Discussion
sebastian_ebg
9 years agoHelper I
Multi-table DAX Attribution Model
I'm trying to generate an attribution model for our company's emails based off a few different related tables. I'm fairly new to DAX, so I've been fumbling around a bit searching for examples of how ...
sebastian_ebg
9 years agoHelper I
I can link it to the Mailing table, but not to the Customer table because it creates a circular dependancy.
I don't think that would be the issue though, as the measure obeys the filtering when applied as a card, but when used within another measure/table, it ignores filtering. Reading up on it a bit, it may be something to do with cross-directional filtering, but I'm definitely out of my depth there.
Anonymous
9 years agoNot applicable
Hi sebastian_ebg,
You can try to use values function to enable the slicer affect:
Conversion Value = CALCULATE(SUM(LineItems[Value]), CustomerDetails[MailOpens] > 0, Attribution[DirectAttribution] = TRUE(), Values(ProductDetails[ProductType]))
Regards,
Xiaoxin Sheng
- sebastian_ebg9 years agoHelper I
Unfortunately that doesn't have any effect. I believe it's because of the context of the calculation. I might need to leave this for a while and re-visit it with a fresh look.