VLookup with Zeros

jlc62

New Member
Joined
Nov 30, 2017
Messages
2
99-111TECHNICAL REPORT:$0$0.00
99-112ENGINEERING:$0$0.00
99-113 PATCH ENGINEERING:$150$1.00
99-114LAND ENGINEERING:$0$0.00
99-115ELEC ENGINEERING:$300$1.30
99-116MECH ENGINEERING:$25$3.30

<tbody>
</tbody>

I am trying to create a report (table) that will look at the table above and only list those items with numbers greater than $0 in the third col (C)?
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Welcome to the Board!

I would recommend using Filters, and Filter out anything less than or equal to zero.
 
Upvote 0
I have done that but the data is on tab1 and the report should be on tab2 for instance.
 
Upvote 0
If you are ok with helper cells, you could place this formula in column E after your input table (assuming your table has headers and data starts in row 2) and copy down.

=IF(C2>0,(MAX($E$1:E1)+1),0)

Then enter this formula in B2 of tab2 and copy over and down

=IFERROR(INDEX(Sheet1!A:A,MATCH(ROW()-1,Sheet1!$E:$E,0)),"-")

You will have to change Sheet1 to whatever your sheet is actually named and adjust other cell references as needed.
 
Upvote 0

Forum statistics

Threads
1,216,028
Messages
6,128,393
Members
449,446
Latest member
CodeCybear

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top