Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
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!
Solved! Go to Solution.
Try this calculated table:
NewTable = FILTER ( Table1, NOT ISBLANK ( Table1[date3] ) )
Source data (Table 1):
Result:
Proud to be a Super User!
Try this calculated table:
NewTable = FILTER ( Table1, NOT ISBLANK ( Table1[date3] ) )
Source data (Table 1):
Result:
Proud to be a Super User!