Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Good Morning,
I am attempting to write a DAX Command to create new columns for Sales from a specific year. I am attempting to compare YOY data from today back to 1998 on a line or bar graph with the Y axis being Sales $ and the X Axis being the month. I would also like to be able to filter those columns by Customer. Currently I have the following expression and it is not working correctly:
Solved! Go to Solution.
😐 Oops...that's what I get for doing this in Notepad.
This instead
2021 Sales =
CALCULATE(
[Total Sales],
FILTER(
ALLEXCEPT(
SALES,
CustomerID
),
SALES[InvoiceDate].[Year]= 2021
),
FILTER(
'Customer',
'Customer'[CustomerID] = SELECTEDVALUE('Customer'[CustomerID])
)
)
It's returning the same number for all Customers because you used ALL() in the FILTER function.
Try this...
2021 Sales =
CALCULATE(
[Total Sales],
FILTER(
ALLEXCEPT(
SALES,
CustomerID
),
SALES[InvoiceDate].[Year]= 2021
),
'Customer'[CustomerID] = SELECTEDVALUE('Customer'[CustomerID])
)
assumes you have a field named CustomerID
Unfortunately, that is returning the following error :
A function 'SELECTEDVALUE' has been used in a True/False expression that is used as a table filter expression. This is not allowed.
😐 Oops...that's what I get for doing this in Notepad.
This instead
2021 Sales =
CALCULATE(
[Total Sales],
FILTER(
ALLEXCEPT(
SALES,
CustomerID
),
SALES[InvoiceDate].[Year]= 2021
),
FILTER(
'Customer',
'Customer'[CustomerID] = SELECTEDVALUE('Customer'[CustomerID])
)
)
Thank You! That worked perfect.
You're welcome. Glad I could help! 🙂
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
25 | |
17 | |
12 | |
12 | |
10 |
User | Count |
---|---|
33 | |
27 | |
16 | |
14 | |
13 |