Reply
Ais12_
New Member

I want to write a Dax to get Current Year and Previous day Value of Sales

I want to write a Dax to get Current Year, current month and Previous day Value of Sales

please help me with that i want to use the same as Filter in my report

1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

 

Thanks for the reply from @Greg_Deckler  and @TRIXTERBINOOB , please allow me to provide another insight: 

 

Hi  @Ais12_ ,

Here are the steps you can follow:

I created some data:

vyangliumsft_1-1714967080686.png

 

1. Create measure.

Current Year Measure =
var _today=TODAY()
return
 SUMX(
    FILTER(ALL('Table'),
    YEAR('Table'[Date])=YEAR(_today)),[Sales])
Current Month Measure =
var _today=TODAY()
return
 SUMX(
    FILTER(ALL('Table'),
    YEAR('Table'[Date])=YEAR(_today)&&MONTH('Table'[Date])=MONTH(_today)),[Sales])
Previous day Value Measure =
var _today=TODAY()
return
 SUMX(
    FILTER(ALL('Table'),
    'Table'[Date]=_today-1),[Sales])

2. Result:

vyangliumsft_0-1714966946907.png

 

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

View solution in original post

3 REPLIES 3
v-yangliu-msft
Community Support
Community Support

 

Thanks for the reply from @Greg_Deckler  and @TRIXTERBINOOB , please allow me to provide another insight: 

 

Hi  @Ais12_ ,

Here are the steps you can follow:

I created some data:

vyangliumsft_1-1714967080686.png

 

1. Create measure.

Current Year Measure =
var _today=TODAY()
return
 SUMX(
    FILTER(ALL('Table'),
    YEAR('Table'[Date])=YEAR(_today)),[Sales])
Current Month Measure =
var _today=TODAY()
return
 SUMX(
    FILTER(ALL('Table'),
    YEAR('Table'[Date])=YEAR(_today)&&MONTH('Table'[Date])=MONTH(_today)),[Sales])
Previous day Value Measure =
var _today=TODAY()
return
 SUMX(
    FILTER(ALL('Table'),
    'Table'[Date]=_today-1),[Sales])

2. Result:

vyangliumsft_0-1714966946907.png

 

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

TRIXTERBINOOB
Regular Visitor

Check out this functions: 

Current year: TOTALYTD

Current Month: TOTALMTD

previous day: CALCULATE(  SUM(DATA)  ,  DATEADD( DATESTABLE  ,  -1  , DAY))

Greg_Deckler
Super User
Super User

@Ais12_ You may find this helpful - https://community.powerbi.com/t5/Community-Blog/To-bleep-With-Time-Intelligence/ba-p/1260000

Also, see if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.

https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...

 

Otherwise, Sorry, having trouble following, can you post sample data as text and expected output?
Not really enough information to go on, please first check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882

Also, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...
avatar user

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

Check out the March 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)