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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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