I'm doing my very first steps in Power Query UDFs. My goal is the function result like (Excel) DATE (). This is how I reach the goal:
() => Date.From (DateTime.LocalNow ())
The result is correct, but the data type is "any". I want the data type to be Date instantly. How can I integrate this into the function?