Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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
@theaskk_1 , 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])))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
12 | |
11 | |
8 | |
7 | |
7 |
User | Count |
---|---|
20 | |
14 | |
11 | |
10 | |
10 |