- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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:
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:
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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:
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:
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Check out this functions:
Current year: TOTALYTD
Current Month: TOTALMTD
previous day: CALCULATE( SUM(DATA) , DATEADD( DATESTABLE , -1 , DAY))
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@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...

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
05-30-2024 07:47 PM | |||
04-09-2024 07:53 AM | |||
05-10-2024 07:22 PM | |||
04-10-2024 07:15 AM | |||
05-03-2024 04:43 AM |
User | Count |
---|---|
14 | |
12 | |
11 | |
11 | |
9 |