Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello Team,
I have requirement like below.
1.Having FY calender table having columns like Date, FY year, FY month, FY quarter, FY Week number.
Note:- FY starts from Jul 1st to Jun 30th every year.
2. Sales table . based on one column i mapped from FY table to this table.
3.currently i should show last 10 FY data in matrics. i mean today is suppose Jan-03-2022 so i should show all years data to till same day respect to year. for FY19 data should be till Jan-03-2020, FY20 be like Jan-03-2021.
Any ways please let me know
@Anonymous , Try like
Make sure you have the day of the year as column in the date table
day of year = datediff( if(month([Date]) <7, Date(year(_max)-1,7,1) , Date(year([Date]),7,1)) , [Date] ,day)+1
YTD Corrected =
var _max =allselected('Date'),'Date'[Date])
Var _day = datediff( if(month(_max) <7, Date(year(_max)-1,7,1) , Date(year(_max),7,1)) , _max ,day) +1
return
calculate(Sum('order'[Qty]),DATESYTD('Date'[Date], "6/30"),'Date'[Day of year ]<=_day)
or
YTD= CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Year]=max('Date'[Year]) && 'Date'[Day of Year] <= Max('Date'[Day of Year]) ))
LYTD = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Year]=max('Date'[Year])-1 && 'Date'[Day of Year] <= Max('Date'[Day of Year])))
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 14 | |
| 7 | |
| 4 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 23 | |
| 10 | |
| 10 | |
| 6 | |
| 5 |