Forum Discussion
mahawkins3
Helper I
8 years agoCannot create relationships - Power BI finding duplicates that do not exist
Hi all, I am trying to create a relationship between two tables. Table 1 ('CLTV') contains all transactions, including the User_ID for the customer making each transaction. Table 2 is a c...
- 8 years ago
You may use the formula below.
Table = FILTER ( DISTINCT ( CLTV[User_ID] ), NOT ( ISBLANK ( CLTV[User_ID] ) ) )
v-chuncz-msft
Community Support
8 years ago
You may use the formula below.
Table = FILTER ( DISTINCT ( CLTV[User_ID] ), NOT ( ISBLANK ( CLTV[User_ID] ) ) )
- mahawkins38 years ago
Helper I
Thanks for the replies - both are correct; accepted v-chuncz-msft as it's a more direct solution.