Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. 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 |
---|---|
14 | |
10 | |
10 | |
10 | |
9 |
User | Count |
---|---|
20 | |
13 | |
12 | |
11 | |
8 |