Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
cyborgandy
Helper II
Helper II

Lookup Value with If

Hi All,

 

I have two tables, I am writing a calculated column in table 2 to get the information that if Closed Date of table 2 is greater than equal to the month column of table 1 in that case in the new calculated column it should give as "No" otherwise lookup value from table 2 to get the status of the company code.let me know if anyone can help

 

Table 1:

 

Company CodeCompany NameStatusClosed Date
1AVYes 
2VAYes15/11/2023
3RKYes 
4KRYes 
5ASYes15/11/2023

 Table 2:

Company CodeCompany NameSupplier NrSupplier NameMonthCalculated Coulmn
1AV111ABCNov-23 
2VA111ABCNov-23 
3RK111ABCNov-23 
4KR111ABCNov-23 
5AS111ABCOct-23 
1AV111ABCOct-23 
2VA111ABCOct-23 
3RK111ABCOct-23 
4KR111ABCOct-23 
5AS111ABCDec-23 
1AV111ABCDec-23 
2VA111ABCDec-23 
2VA111ABCOct-23 
2VA111ABCDec-23 
2VA111ABCDec-23 
3RK111ABCDec-23 
3RK111ABCAug-23 
3RK111ABCAug-23 
3RK111ABCAug-23 
5AS111ABCAug-23 
5AS111ABCAug-23 
5AS111ABCDec-23 
5AS111ABCDec-23 
5AS111ABCAug-23 
5AS111ABCNov-23 
2VA111ABCSep-23 
2VA111ABCSep-23 
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @cyborgandy ,

The table data is shown below:

vzhouwenmsft_0-1707964122671.png

vzhouwenmsft_1-1707964135653.png

Please follow these steps:

1. Use the following DAX expression to create a column

Column = IF(ISBLANK(LOOKUPVALUE(Table1[Closed Date],Table1[Company Code],'Table2'[Company Code])),
"YES",
IF(MONTH(LOOKUPVALUE('Table1'[Closed Date],'Table1'[Company Code],'Table2'[Company Code]))>MONTH('Table2'[Month]) ,
"NO",
"YES"))

2. Final output

vzhouwenmsft_2-1707964223346.png

 

Best Regards,
Wenbin Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @cyborgandy ,

The table data is shown below:

vzhouwenmsft_0-1707964122671.png

vzhouwenmsft_1-1707964135653.png

Please follow these steps:

1. Use the following DAX expression to create a column

Column = IF(ISBLANK(LOOKUPVALUE(Table1[Closed Date],Table1[Company Code],'Table2'[Company Code])),
"YES",
IF(MONTH(LOOKUPVALUE('Table1'[Closed Date],'Table1'[Company Code],'Table2'[Company Code]))>MONTH('Table2'[Month]) ,
"NO",
"YES"))

2. Final output

vzhouwenmsft_2-1707964223346.png

 

Best Regards,
Wenbin Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors