Forum Discussion
nataliesmiy1357
Helper IV
2 years agoLatest Date and Time
Hello! How do I make a column that produces the latest date and time? I have a dataset that has a column of a DateTime (MM/DD/YYYY HH:MM:SS: AM) How do I do this? I want to create a default of...
- 2 years ago
ray_aramburo
Super User
2 years agoYou can add a custom column in Power Query and typing the formula:
= DateTime.LocalNow()
If only you need the date then it's:
= Date.From( DateTime.LocalNow() )