Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi All,
Can someone help me with the below scenerio?
I wanted to sum the price when the product is available on both 2022 and 2021? is this something we can get using DAX?
Appreciate your support!!
Solved! Go to Solution.
Result =
VAR _filter =
INTERSECT(
CALCULATETABLE(VALUES('Table'[Customer]),'Table'[Year] = 2021),
CALCULATETABLE(VALUES('Table'[Customer]),'Table'[Year] = 2022)
)
RETURN
CALCULATE(
SUM('Table'[Price]),
'Table'[Year] = 2021,
_filter
)
Result =
VAR _filter =
INTERSECT(
CALCULATETABLE(VALUES('Table'[Customer]),'Table'[Year] = 2021),
CALCULATETABLE(VALUES('Table'[Customer]),'Table'[Year] = 2022)
)
RETURN
CALCULATE(
SUM('Table'[Price]),
'Table'[Year] = 2021,
_filter
)
@SpartaBI I am getting the below error and not able to get the answer..can you help me with it?
am sorry @SpartaBI the error is not showing now which was related to values..somehow i fixed it..but the result is blank now
@Sudharsanan hey friend, will be back to desk in few minutes. Do you want to do a quick zoom?
@Sudharsanan what is the result you want to get in the measure?
25 + 35 + 45 ? or also the valus from 2022? 5, 10 and 20?
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |