Forum Discussion
Syndicate_Admin
5 years agoAdministrator
Create table from another by filtering data with values in date
Hello! I have several data sources. I need to create from an existing table, the specific values that do not have data in the "date3" column of the source table. How can I filter so that I only ...
- 5 years ago
Try this calculated table:
NewTable = FILTER ( Table1, NOT ISBLANK ( Table1[date3] ) )Source data (Table 1):
Result:
JessicaM
5 years agoFrequent Visitor
Thanks DataInsights !
It is working perfectly now!