Forum Discussion

Mangnuel's avatar
Mangnuel
Icon for Helper I rankHelper I
1 year ago
Solved

Monthly into Daily Resolution

Hey there Power Bi World, I need your help. Given is a tabel including three different informations. The Asset, the Date and the Yield from the Asset.   monthly total for each asset is...
  • Anonymous's avatar
    Anonymous
    1 year ago

    Hi  Mangnuel ,


    Are you referring to the start date and end date inside the CALENDAR() function?

    The parameters inside the CALENDAR() function can be customized to change, the date range is from the specified start date to the specified end date, including these two dates, if you want to use today as the last date inside the function, you can use the following dax.

    CALENDAR(
        DATE(2024,1,1),
        TODAY())

    Refer to:

    CALENDAR function (DAX) - DAX | Microsoft Learn

     

    Best Regards,

    Liu Yang

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.