How to Make DateEnd parameter equal today

Hi @JulieCarignan,

Welcome to the forum!

The DateTime.FixedLocalNow expression, will return a DateTime value set to the current date and time on the system. When combined with Date.From it is converted into a Date value. To illustrate:

Today = Date.From( DateTime.FixedLocalNow())

Some useful date related functions are highlighted here:

I hope this is helpful

1 Like