Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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!
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
114 | |
108 | |
101 | |
38 | |
35 |
User | Count |
---|---|
149 | |
122 | |
76 | |
74 | |
52 |