March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi Everyone,
Got a little mind twister here 🙂
As per the example below, I would like create a measure to sum the sales for products x and y for the latest year. and check if there was no discount, then sum the sales.
i.e Sum sales of X in year 2003 and Discount(yes) + sum of sales of Y in year 2006 and Discount(yes) = should be equal to 0 for x and 700 for Y = total: 700
Product | Sales | Discount | Year |
x | 1200 | YES | 1 |
x | 100 | NO | 3 |
y | 2300 | YES | 3 |
y | 500 | YES | 3 |
y | 3400 | YES | 2 |
y | 700 | YES | 6 |
Thanks in advance
Solved! Go to Solution.
OK, minor adjustments, actually tested:
Measure =
VAR __Table =
ADDCOLUMNS(
SUMMARIZE(
'Table',
[Product],
"__Year",MAX('Table'[Year])
),
"__Sales",SUMX(FILTER('Table','Table'[Product] = EARLIER([Product]) && 'Table'[Year]=EARLIER([__Year]) && 'Table'[Discount] = "YES"),'Table'[Sales])
)
RETURN
SUMX(__Table,[__Sales])
Perhaps:
Measure =
VAR __Table =
ADDCOLUMNS(
SUMMARIZE(
'Table',
[Product],
"__Year",MAX('Table'[Year])
),
"__Sales",SUMX(FILTER('Table','Table'[Product] = [Product] && 'Table'[Year]=[Year] && 'Table'[Discount] = "YES"),'Table'[Sales])
RETURN
SUMX(__Table,[__Sales])
Warning, not tested.
OK, minor adjustments, actually tested:
Measure =
VAR __Table =
ADDCOLUMNS(
SUMMARIZE(
'Table',
[Product],
"__Year",MAX('Table'[Year])
),
"__Sales",SUMX(FILTER('Table','Table'[Product] = EARLIER([Product]) && 'Table'[Year]=EARLIER([__Year]) && 'Table'[Discount] = "YES"),'Table'[Sales])
)
RETURN
SUMX(__Table,[__Sales])
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
125 | |
84 | |
66 | |
54 | |
43 |
User | Count |
---|---|
200 | |
107 | |
96 | |
64 | |
56 |