Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I have two tables:
Table 1
Name | |
John Doe | John.doe@email.com |
John Doe | John.doe@email.com |
Larry Fitz | Larry.Fitz@email.com |
John Elway | John.elway@email.com |
John Elway | John.elway@email.com |
John Elway | John.elway@email.com |
Table 2
Name | Date Submitted | |
John Elway | John.elway@email.com | 1/1/2023 |
Joe Burrow | Joe.burrow@email.com | 5/1/2022 |
Larry Fitz | Larry.Fitz@email.com | 12/1/2022 |
Brian Urlacher | brian.urlacher@email.com | 9/1/2022 |
I want to create a new column using DAX on Table 1 called "Eligibility" where:
IF the inidivudla has a submission on Table 2 from the past 3 months, it says "Yes", other wise "No".
Intended Result would be:
Name | Eligibility | |
John Doe | John.doe@email.com | No |
John Doe | John.doe@email.com | No |
Larry Fitz | Larry.Fitz@email.com | Yes |
John Elway | John.elway@email.com | Yes |
John Elway | John.elway@email.com | Yes |
John Elway | John.elway@email.com | Yes |
Thank you in advance!
Solved! Go to Solution.
Hi @botaac ,
Please try to create a new column with below dax formula:
Eligibility =
VAR cur_date =
TODAY ()
VAR _date =
LOOKUPVALUE ( Table2[Date Submitted], Table2[Name], Table1[Name] )
VAR _val =
DATEDIFF ( cur_date, _date, MONTH )
RETURN
IF ( ISBLANK ( _date ), "No", IF ( _val > 3, "No", "Yes" ) )
Please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @botaac ,
Please try to create a new column with below dax formula:
Eligibility =
VAR cur_date =
TODAY ()
VAR _date =
LOOKUPVALUE ( Table2[Date Submitted], Table2[Name], Table1[Name] )
VAR _val =
DATEDIFF ( cur_date, _date, MONTH )
RETURN
IF ( ISBLANK ( _date ), "No", IF ( _val > 3, "No", "Yes" ) )
Please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hi @botaac
try like:
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
15 | |
10 | |
10 | |
10 | |
10 |
User | Count |
---|---|
19 | |
14 | |
13 | |
11 | |
8 |