Apr 04 2024 03:08 PM
Hi everyone,
I need help building logic in excel where in my wb, I have two sheets
Sheet 2 has following data points:
Here’s what I want:
I want to look at column M for all the instances >=1 and then pull set # from column A, It should only pull the instances for >=1 ignoring the zeros
I want this logic built in sheet 1. Attaching the wb for reference
appreciate your help! Thank you!
Apr 04 2024 03:47 PM
Solution=INDEX(Sheet2!$A$2:$A$11,SMALL(IF(Sheet2!$M$2:$M$11>=1,ROW(Sheet2!$M$2:$M$11)-1),ROW(A1)))
This formula returns the expected results in my sheet. The formula has to be entered with ctrl+shift+enter if someone doesn't work with Office 365 or Excel for the web. The formula is in sheet1 in cell B2 and filled down.
Apr 04 2024 07:40 PM
Apr 04 2024 03:47 PM
Solution=INDEX(Sheet2!$A$2:$A$11,SMALL(IF(Sheet2!$M$2:$M$11>=1,ROW(Sheet2!$M$2:$M$11)-1),ROW(A1)))
This formula returns the expected results in my sheet. The formula has to be entered with ctrl+shift+enter if someone doesn't work with Office 365 or Excel for the web. The formula is in sheet1 in cell B2 and filled down.