Forum Discussion
DAX Help: Running YTD Total by Day
- Anonymous2 years ago
Hi,
Thanks for the solution Greg_Deckler and 123abc offered and i want to offer some more information for user to refer to.
hello IamTDR , you can create the following measure
MEASURE = VAR a = CALCULATE ( MIN ( Dim_Date[Date] ), ALL ( Dim_Date ), Dim_Date[Fiscal Year] = 2024 ) RETURN IF ( SUM ( 'Table'[sales_net] ) <> BLANK () && MAX ( Dim_Date[Fiscal Year] ) = 2024, CALCULATE ( SUM ( 'Table'[sales_net] ), FILTER ( Dim_Date, [Date] >= a && Dim_Date[Date] <= EDATE ( TODAY (), -12 ) ) ) )Ouptut
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks for the reply
I am not getting the desired outcome with the proposed measure.
Adding a screenshot of some sample data.
So if my End-User is Selecting the Month 'AUG' and they want to switch between MTD and YTD
Hi,
Thanks for the solution Greg_Deckler and 123abc offered and i want to offer some more information for user to refer to.
hello IamTDR , you can create the following measure
MEASURE =
VAR a =
CALCULATE (
MIN ( Dim_Date[Date] ),
ALL ( Dim_Date ),
Dim_Date[Fiscal Year] = 2024
)
RETURN
IF (
SUM ( 'Table'[sales_net] ) <> BLANK ()
&& MAX ( Dim_Date[Fiscal Year] ) = 2024,
CALCULATE (
SUM ( 'Table'[sales_net] ),
FILTER ( Dim_Date, [Date] >= a && Dim_Date[Date] <= EDATE ( TODAY (), -12 ) )
)
)
Ouptut
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- IamTDR2 years ago
Responsive Resident
Thanks all for the much needed help on this!