The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I am trying to filter my query for anything that is blank OR the value of the date is greater than or equal to Today. When I select today on the custom filter, it enter today's date but I need it to be the actual date of TODAY().
Solved! Go to Solution.
Hi @jcastr02 ,
Here is my sample data:
Use this M function:
= Table.SelectRows(#"Changed Type", each [Date] = null or [Date] >= Date.From(DateTime.LocalNow()))
And the final output is as below:
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @jcastr02 ,
Here is my sample data:
Use this M function:
= Table.SelectRows(#"Changed Type", each [Date] = null or [Date] >= Date.From(DateTime.LocalNow()))
And the final output is as below:
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Joseph_Fadero12 Thank you . I tried to put this within the formula, but getting an error - any help is appreciated.