Forum Discussion
Filter table
- 8 years ago
Hello,
You need to create relationship between initional table and calculated table. You should to create calculated column in initional table, something like this:
LogGroupId = LogTable[AppName]&LogTable[Version]&LogTable[UserLogin]
i.e. combination of key fields. Next step - add this column in SUMMARIZE construction, next - create relationship between tables using column LogGroupId. You need to set crossfilter direction option to Both
Hello,
You need to create relationship between initional table and calculated table. You should to create calculated column in initional table, something like this:
LogGroupId = LogTable[AppName]&LogTable[Version]&LogTable[UserLogin]
i.e. combination of key fields. Next step - add this column in SUMMARIZE construction, next - create relationship between tables using column LogGroupId. You need to set crossfilter direction option to Both
Hi,
Thanks popov and magsod for your replies.
I used popov' solution and it works very well
Thanks