Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
Dear Experts
I have 2 fields in my report YearWeek & Sales. I would like to display last year same week data in a new column next to Sales.
*I do not have date in my of my tables it is only YearWeek YYYYWW.
Please can someone help me with the DAX code to achieve this or advise if any altertive option. Appreciate your help on this.
Thanks
Mahad
Solved! Go to Solution.
PrevYearSales :=
CALCULATE(
SUM(YourTable[Sales]),
FILTER(
YourTable,
YourTable[YearWeek] = EARLIER(YourTable[YearWeek])-100
)
)
PrevYearSales :=
CALCULATE(
SUM(YourTable[Sales]),
FILTER(
YourTable,
YourTable[YearWeek] = EARLIER(YourTable[YearWeek])-100
)
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
119 | |
116 | |
72 | |
64 | |
46 |