Forum Discussion

Sunnie's avatar
Sunnie
Icon for Helper I rankHelper I
5 years ago
Solved

Dates showing as year: 1899

I need some help. I have created a conditional column where the output data is a date.  Yet power bi changed the year to 1899.  I 've tried multiple ways to change the date in the column and unable. ...
  • HotChilli's avatar
    HotChilli
    5 years ago

    This is what I see. StartMonth is a text datatype (it should be a datetime).  It contains 5 possible values (in the visible data) , one of which is blank.

    The code in the added column is looking for text values of December, January etc  which it will never find.  The code always falls through to the "else" clause which is 0.  A 0 date represents 1/12/1899.

    ----------------------

    It looks like you want to get the 1st of the month for a non-blank date and put that in a new column. That's straightforward to do.

    In Power Query, select the StartMonth column. Change the datatype to Datetime.

    Go to the Add Column menu.

    From the ribbon, select Date->Month->start of month.

    That will get the 1st of the month and put null in for empty dates.

    How does that sound?