Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi ,
I need dax formula to calculate Target column , which differnce of current week and next week .
| Quarter | Year-Week | Diff | Target |
| Q2'20 | 2020-26 | 8664 | 8664 |
| Q2'21 | 2020-27 | 0 | 8664 |
| Q2'22 | 2020-28 | 0 | 8664 |
| Q2'23 | 2020-29 | 1408 | 7256 |
| Q2'24 | 2020-30 | 0 | 7256 |
| Q2'25 | 2020-31 | 672 | 6584 |
| Q2'26 | 2020-32 | 0 | 6584 |
| Q2'27 | 2020-33 | 0 | 6584 |
| Q2'28 | 2020-34 | 370 | 6214 |
| Q2'39 | 2020-45 | 1049 | 3748 |
Thanks
@Anonymous , preferably move week -year to separate table and create a rank on that
Week Rank = Rankx(all(Week],[Week Year],,asc,dense)
Now use this rank for next and previous week
This Week = CALCULATE(sum('Table'[Target]), FILTER(ALL('WEEK'),'WEEK'[Week Rank]=max('WEEK'[Week Rank])))
Last Week = CALCULATE(sum('Table'[Target]), FILTER(ALL('WEEK'),'WEEK'[Week Rank]=max('WEEK'[Week Rank])-1))
Next Week = CALCULATE(sum('Table'[Target]), FILTER(ALL('WEEK'),'WEEK'[Week Rank]=max('WEEK'[Week Rank])-1))
refer my blog on Week
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 44 | |
| 43 | |
| 38 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 67 | |
| 66 | |
| 31 | |
| 28 | |
| 24 |