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.
Below is some DAX code I've written to calucalte a relative date. The user selects a date from a ReferenceDate calendar, this is separate from all other tables. [Max Quarter] calculates the reference date we're looking at. [IRR Date] then calculated relative dates based on the [Max Quarter] and a table called 'Trailing IRR' (screen shot attached). Have I over complicated the [IRR Date] measure?? Is there anything I can do to improve these measures? Let me know if I haven't explained it well.
Max Quarter =
SELECTEDVALUE(
ReferenceDate[Quarter end date],
CALCULATE(
MAX('Calendar'[Quarter end date]),
ALLSELECTED('Calendar')))
IRR Date =
VAR TrailingDate =
IF(
SELECTEDVALUE('Trailing IRR'[Time Period])="3 Month",
CALCULATE(
MAX('Calendar'[Date]),
PREVIOUSQUARTER(
CALCULATETABLE(
VALUES('Calendar'[Date]),
FILTER(ALL('Calendar'),
'Calendar'[Date]=[Max Quarter])))),
DATE(
YEAR([Max Quarter])-SELECTEDVALUE('Trailing IRR'[Year]),
MONTH([Max Quarter]),
DAY([Max Quarter])))
RETURN
IF(
TrailingDate=[Max Quarter],
BLANK(),
TrailingDate)
Solved! Go to Solution.
Great! Don't forget to mark it as resolved if it helps, or let me know if it doesn't
Pi
Great! Don't forget to mark it as resolved if it helps, or let me know if it doesn't
Pi
Hi @halomo97
You could take advantage of the "EDATE" function which subtracts a specified number of months from a date.
In my example below, I have added another field to your lookup table which is the number of months difference as implied by the selected time period:
You can use this single selected value as a parameter within the EDATE() function, removing the need for a long if statement:
Where [Selected Date] is the date you wish to perform comparison on and 'year ref' is the table with the selection value.
HTH
Pi
Thank you for this suggestion! I'll give it a go, I definitely think removing the IF statement will help
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 |
---|---|
17 | |
10 | |
10 | |
8 | |
6 |
User | Count |
---|---|
20 | |
17 | |
16 | |
13 | |
10 |