Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello Folks,
I am new to powerbi and require your expertise to help me with a problem.
I am filtering out some data by defining some parameter.
#"Filtered by date range" = Table.SelectRows(#"Change to datetime", each [WRITTEN_DATE] >= RangeStart and [WRITTEN_DATE] <= RangeEnd)
but i am also missing the values with null value in written_date field. How can i manipulate this code to get those rows in which written_date is null.
Thanks!
Solved! Go to Solution.
Hi @Pravin_rajput,
#"Filtered by date range" = Table.SelectRows(#"Change to datetime", each ([WRITTEN_DATE] >= RangeStart and [WRITTEN_DATE] <= RangeEnd) or [WRITTEN_DATE] = null)
Hi @Pravin_rajput,
#"Filtered by date range" = Table.SelectRows(#"Change to datetime", each ([WRITTEN_DATE] >= RangeStart and [WRITTEN_DATE] <= RangeEnd) or [WRITTEN_DATE] = null)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.