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
sarjensystems1
Helper III
Helper III

Last year to date sales

Hii..

I have a requirement to calculate last year sales i.e if today date is 19/oct/2019 i need the last year sales from 01/Jan/2018 to 19/Oct/2018

I have used

SAMEPERIODLASTYEAR,
PARALLELPERIOD,dateadd functions but all the functions is not satisfying my requirement....
all the functions are returning the sales from 01/Jan/2018 and 31/Oct/2018
is there any way to do this??
 
Thanks
1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @sarjensystems1 

It would certainly help if you show a sample of your tables. Assuming you are looking for a measure, try this in a card visual:

 

Measure =
VAR First_ =
    DATE ( YEAR ( TODAY () ) - 1; 1; 1 )
VAR Last_ =
    EDATE ( TODAY (); -12 )
RETURN
    CALCULATE (
        SUM ( Table1[Sales] );
        Table1[Date] >= First_;
        Table1[Date] <= Last_
    )

Please mark the question solved when done and consider giving kudos if posts are helpful.

Cheers  Datanaut

View solution in original post

1 REPLY 1
AlB
Super User
Super User

Hi @sarjensystems1 

It would certainly help if you show a sample of your tables. Assuming you are looking for a measure, try this in a card visual:

 

Measure =
VAR First_ =
    DATE ( YEAR ( TODAY () ) - 1; 1; 1 )
VAR Last_ =
    EDATE ( TODAY (); -12 )
RETURN
    CALCULATE (
        SUM ( Table1[Sales] );
        Table1[Date] >= First_;
        Table1[Date] <= Last_
    )

Please mark the question solved when done and consider giving kudos if posts are helpful.

Cheers  Datanaut

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.