Join 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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!