Forum Discussion
remi
Advocate II
8 years agocopy a table and filter it
Hello all, Is there a function that can help to copy a table and then filter based on a specific value from one column without doing it from the Edit Query side? Thank you!
- 8 years ago
Yes, you go to the modeling tab and choose "New Table" and you can plug in syntax like:
Table 1 = FILTER('Table',[Column] = "Value")You will end up with a new table of only the rows in the source table 'Table' that have "Value" in [Column]
Greg_Deckler
Community Champion
8 years agoYes, you go to the modeling tab and choose "New Table" and you can plug in syntax like:
Table 1 = FILTER('Table',[Column] = "Value")You will end up with a new table of only the rows in the source table 'Table' that have "Value" in [Column]
remi
Advocate II
8 years agoThank you Greg_Deckler , positive result!