- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Conditional date formula dax
Hello!
I have this data. With Mac Trans Date Column, I want to create a measure that is this Transdate is 1 and 1/2 yr older than a current date then " No Need to Request" elsa "".
Thank you so much!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Ok, you can intergrate calculate and filter function as follows:
SubAgreeCertRequest =
VAR CutoffDate = TODAY() - 548
RETURN
IF (
CALCULATE(
MAX(_Facts[TransDate]),
_Facts[GLName] = "Bank Account - USD",
_Facts[FH_CurrentYN] = "Yes",
_Facts[FH_Type] = "28 Legacy AS Transactions"
) <= CutoffDate,
"No Need to Request",
""
)
Try the above.
Proud to be a Super User! | |
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @juhoneyighot - you can use the following formula
Status Measure =
VAR CutoffDate = TODAY() - 548 -- Approx. 1.5 years in days (365.25 * 1.5)
RETURN
IF(
MAX('YourTable'[Mac Trans Date]) <= CutoffDate,
"No Need to Request",
""
)
use the above measure to your Power BI report.Place it in a table visual or any context where you want to see the result for each record.Ensure the Mac Trans Date column is properly formatted as a date column.
Proud to be a Super User! | |
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@rajendraongole1
This is the correct Formula SubAgreeCertRequest =
VAR CutoffDate = TODAY() - 548
RETURN
IF (
MAX(_Facts[TransDate]) <= CutoffDate,
"No Need to Request",
""
)
But I have to Filter the following from _Facts table
_Facts[GLName] = "Bank Account - USD",
_Facts[FH_CurrentYN]="Yes",
_Facts[FH_Type]="28 Legacy AS Transactions"
how should I integrate this in the formula?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Ok, you can intergrate calculate and filter function as follows:
SubAgreeCertRequest =
VAR CutoffDate = TODAY() - 548
RETURN
IF (
CALCULATE(
MAX(_Facts[TransDate]),
_Facts[GLName] = "Bank Account - USD",
_Facts[FH_CurrentYN] = "Yes",
_Facts[FH_Type] = "28 Legacy AS Transactions"
) <= CutoffDate,
"No Need to Request",
""
)
Try the above.
Proud to be a Super User! | |
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
08-13-2024 10:15 AM | |||
06-10-2024 01:33 PM | |||
07-23-2024 06:05 AM | |||
12-19-2023 08:03 AM | |||
09-12-2024 12:22 PM |
User | Count |
---|---|
141 | |
115 | |
84 | |
63 | |
48 |