Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

daily change

so i have the following data

 

Country/RegioncasosMesDíacasos por dia
Argentina1054abril1 
Argentina1133abril279
Argentina1265abril3132
Argentina1451abril4186
Argentina1451abril50
Argentina1554abril6103
Argentina1628abril774
Argentina1715abril887
Argentina1795abril980

 

i need to create the column "casos por dia" in power bi con dax, the column must be a daily grow, so the difference between a day and the day before, must work for many countrys , months and year, the date can be change to any format.

i need to do it in dax to publish in power bi, the data come from the cloud

 

 

  • Hi Anonymous 

     

    You will need to make sure that you have one column for Date. I create a sample data model with the following columns:

    • Country
    • Date
    • Amount

    I then created two more columns called DateBefore (which is the previous day's date) and Change (which is the change from previous day). Please see the screenshots below for the DAX expression for those 2 new columns.

     

     

     

    Hope this help!

     

    If I have answered your questions please Accept this post as a solution!

6 Replies

  • Hi Anonymous 

     

    You will need to make sure that you have one column for Date. I create a sample data model with the following columns:

    • Country
    • Date
    • Amount

    I then created two more columns called DateBefore (which is the previous day's date) and Change (which is the change from previous day). Please see the screenshots below for the DAX expression for those 2 new columns.

     

     

     

    Hope this help!

     

    If I have answered your questions please Accept this post as a solution!

    • Anonymous's avatar
      Anonymous
      Not applicable

      thanks for the answer, at the end i solve it by power query, duplicating the table then creating another column with the day before and the data of the day before then using the difference in another column , your solution is more elegant.

  • Anonymous's avatar
    Anonymous
    Not applicable
    Such calculations should be performed in Power Query, not in DAX. Please use the right tool for the job. Thanks.

    Best
    D
    • bheepatel's avatar
      bheepatel
      Resolver IV

      Anonymous I would beg to differ. There is no written law which says what tool should be used for what calculation. At the end of the day it comes down to personal preference 🙂

      • Anonymous's avatar
        Anonymous
        Not applicable
        bheepatel, I beg to differ. Calculated columns are never compressed optimally by the SSAS engine, therefore if you want to get the best of your model in terms of space and speed, you'd better use Power Query.

        What's more, DAX has no concept of order whereas Power Query, the M language, does. Hence calculations like yours should be performed in PQ.

        Best
        D