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 add dates with value and not empty?
Thank you!
Try this calculated table:
NewTable = FILTER ( Table1, NOT ISBLANK ( Table1[date3] ) )Source data (Table 1):
Result:
2 Replies
- DataInsightsSuper User
Try this calculated table:
NewTable = FILTER ( Table1, NOT ISBLANK ( Table1[date3] ) )Source data (Table 1):
Result:
- JessicaMFrequent Visitor
Thanks DataInsights !
It is working perfectly now!