Forum Discussion
Anonymous
5 years agoNot applicable
Power Query editor - make new column and change blank/empty EndDate cells in date TODAY
Hello community members, I have the following issue. In the Power Query editor I have the following table below. Now I would like to have a new column that says: give date as stated in the colum...
- 5 years ago
In Power Query Editor use this formula in a custom column:
if [EndDate] = null then DateTime.LocalNow() else [EndDate]