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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
jimpatel
Post Patron
Post Patron

DAX formula

Hi

 

Thanks for looking at my post.

 

I am using below DAX code what should i do please to get information from same table and from same column please. That is i have attached an example "Modified status" which will look for material in the same column (it will be more than 2 in some cases) and if the match found then if "Status" is "Yes" for any of the matched part then "Modified status" will be yes for that part number please. 

 

Any idea pleasE? got stuck with this for ages : (

 

Column1 =
IF (
ISEMPTY (
FILTER (
'Table1',
'Table1'[Material]= 'Table2'[Material 2]
&& 'Table1'[status] = "Yes"
)
),
"NO",
"YES"
)
 
jimpatel_0-1665060582295.png

 

 
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @jimpatel , 

I have created a simple sample, please refer to it to see if it helps you.

Create a measure.

 

_1=CALCULATE(MAX('Table'[status]),FILTER(ALL('Table'),'Table'[material]=SELECTEDVALUE('Table'[material])))

 

vpollymsft_0-1665109357182.png

If I have misunderstood your meaning, please provide more details with your desired output and pbix file without privacy information .

 

Best Regards

Community Support Team _ Polly

 

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

2 REPLIES 2
Anonymous
Not applicable

Hi @jimpatel , 

I have created a simple sample, please refer to it to see if it helps you.

Create a measure.

 

_1=CALCULATE(MAX('Table'[status]),FILTER(ALL('Table'),'Table'[material]=SELECTEDVALUE('Table'[material])))

 

vpollymsft_0-1665109357182.png

If I have misunderstood your meaning, please provide more details with your desired output and pbix file without privacy information .

 

Best Regards

Community Support Team _ Polly

 

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

This is what exatly i am looking for.

 

Thanks a lot for your time and input 

 

Jim

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.