Forum Discussion

Nischal's avatar
Nischal
Icon for Helper I rankHelper I
8 years ago

DAX TOTALYTD() - Duplicate Date Error

not able to visualize the YTD sales ... so what is wrong in the dax

 

Total Sales YTD = TOTALYTD(sales_attributes1[Total Sales],sales_attributes1[DATECREATED] )

 

the calculation error in sales[total sales ytd]: a date column containing a duplicate date was specified in the call to function 'datesytd' this is not supported

4 Replies

  • ElliotP's avatar
    ElliotP
    Icon for Post Prodigy rankPost Prodigy

    Evening,

     

    In tabular data models (power bi, tables & relationships) it's best to create a related date table to your fact table.

     

    Your fact table typically contains all of your data, for example transaction log.

     

    Your Date table is a representation of dates and the associated valeus as so you can filter against and use the columns in place of dates values from your fact table.

     

    Here is a great template of a date table (https://www.sqlbi.com/articles/reference-date-table-in-dax-and-power-bi/); you can also google about for some simple Power Query to build you a super basic date table. Once you've added that in, join your fact and new date table with a relationship by the Date column in your fact table and the DateKey in the date table.

  • Hello you have to create a separate DateTable with contigous unique dates and relate the date columns.

    There are dozens of posts how to do so. Here or here.

     

    Total Sales YTD = TOTALYTD(sales_attributes1[Total Sales],DateTabel[Dates] )

    • Nischal's avatar
      Nischal
      Icon for Helper I rankHelper I

      hi, both i tried doing the same by using calendar function the issue is i am getting a blank totalytd

  • JPT145's avatar
    JPT145
    Icon for Microsoft Employee rankMicrosoft Employee

    4 years late but ... So I have found out If you already have a Column that has the dates lets call it {Date item was sold} or in your case if it lists the dates in a format such as {Friday, January 28,2022} then it the [TotalYTD] funtion won't work as a approrate value for the <Date> portion of the measurment.....and gives you the error you have seen.

     

    The Date format I have seen the [TotalYTD] measure function like is MM/DD/YYYY once I Transformed my data in the {Date item was sold} from the date format of {Friday, January 28,2022} to {1/28/2022} then it worked like a charm!