Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
LangeJan
Helper I
Helper I

Turnover YTD vs turnover LYTD (Total)

I have a datetable called 'DateTable'.

 

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

hi @LangeJan 

 

As there is no Date Table, i tried to create two measures like this:

SumTurnoverYTD = 
VAR _day = MAX(tbl[date])
RETURN
CALCULATE(
    SUM(tbl[Turnover]),
    tbl[date]>=DATE(YEAR(_day),1,1)&&tbl[date]<=_day
)
SumTurnoverLYTD = 
VAR _day = MAX(tbl[date])
RETURN 
CALCULATE(
    SUM(tbl[Turnover]),
    tbl[date]>=DATE(YEAR(_day)-1,1,1)
        &&tbl[date]<=DATE(YEAR(_day)-1, MONTH(_day),DAY(_day))
)

 

it worked like this:

FreemanZ_0-1671276027112.png

View solution in original post

3 REPLIES 3
moatazezat
Helper I
Helper I

Dear, 
If I used quarters, please provide me with the measure. for financial Ratios

FreemanZ
Super User
Super User

hi @LangeJan 

 

As there is no Date Table, i tried to create two measures like this:

SumTurnoverYTD = 
VAR _day = MAX(tbl[date])
RETURN
CALCULATE(
    SUM(tbl[Turnover]),
    tbl[date]>=DATE(YEAR(_day),1,1)&&tbl[date]<=_day
)
SumTurnoverLYTD = 
VAR _day = MAX(tbl[date])
RETURN 
CALCULATE(
    SUM(tbl[Turnover]),
    tbl[date]>=DATE(YEAR(_day)-1,1,1)
        &&tbl[date]<=DATE(YEAR(_day)-1, MONTH(_day),DAY(_day))
)

 

it worked like this:

FreemanZ_0-1671276027112.png

Thanks a lot @FreemanZ 
Your solution solved my issue.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.