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.
Hi all,
Appreciate if anyone can help me with this.
Background: To create a measure "LY Sales" that can be sliced by a range of TransactionDate
Problem Faced: It works when I sliced the data by individual day. However, when I chose the period 14/6/2017 to 15/6/2017, I got an error message "A table of multiple values was supplied where a single value was expected."
Solved! Go to Solution.
Hi all,
I solved the problem with the following measure:
FOX LY Sales =
CALCULATE (SUM('FOX LY Data'[Net Sales]),
FILTER(
ALL(DateKey),
COUNTROWS(FILTER(DateKey, EARLIER(DateKey[Date]) = DATEADD(DateKey[Date], -1, YEAR)))))
Thanks all whom have replied!
Hi all,
I solved the problem with the following measure:
FOX LY Sales =
CALCULATE (SUM('FOX LY Data'[Net Sales]),
FILTER(
ALL(DateKey),
COUNTROWS(FILTER(DateKey, EARLIER(DateKey[Date]) = DATEADD(DateKey[Date], -1, YEAR)))))
Thanks all whom have replied!
Based on your DAX expression, it seems that you need to calculated the value for same period for last year. If that is the case, you could use SAMEPERIODLASTYEAR function which returns a table that contains a column of dates shifted one year back in time from the dates in the specified dates column, in the current context.
https://msdn.microsoft.com/en-us/library/ee634972.aspx
Regards,
Charlie Liao
Hey,
please provide the formula for your "LY Sales" measure.
Regards
User | Count |
---|---|
121 | |
72 | |
71 | |
57 | |
50 |
User | Count |
---|---|
167 | |
83 | |
68 | |
65 | |
55 |