Forum Discussion
khaycock
6 years agoHelper I
Combining Data
Hello, Is it possible to create extra lines based on data in other columns? I have three fields that I need to be one field so it can be a generic filter: I'm conscious that amending th...
az38
6 years agoCommunity Champion
Hi khaycock
try a new calculated table
Table 2 = FILTER(
DISTINCT(
UNION(
SELECTCOLUMNS('Table',"Target List", 'Table'[Target List 1]),
SELECTCOLUMNS('Table',"Target List", 'Table'[Target List 2]),
SELECTCOLUMNS('Table',"Target List", 'Table'[Target List 3])
)
), NOT(ISBLANK([Target List])))khaycock
6 years agoHelper I
How can I connect this to the rest of the data so I can use it to filter?