VLookup with Zeros

jlc62

New Member
Joined
Nov 30, 2017
Messages
2
[TABLE="width: 545"]
<tbody>[TR]
[TD]99-111[/TD]
[TD]TECHNICAL REPORT:[/TD]
[TD="align: right"]$0[/TD]
[TD="align: right"]$0.00[/TD]
[/TR]
[TR]
[TD]99-112[/TD]
[TD]ENGINEERING:[/TD]
[TD="align: right"]$0[/TD]
[TD="align: right"]$0.00[/TD]
[/TR]
[TR]
[TD]99-113[/TD]
[TD] PATCH ENGINEERING:[/TD]
[TD="align: right"]$150[/TD]
[TD="align: right"]$1.00[/TD]
[/TR]
[TR]
[TD]99-114[/TD]
[TD]LAND ENGINEERING:[/TD]
[TD="align: right"]$0[/TD]
[TD="align: right"]$0.00[/TD]
[/TR]
[TR]
[TD]99-115[/TD]
[TD]ELEC ENGINEERING:[/TD]
[TD="align: right"]$300[/TD]
[TD="align: right"]$1.30[/TD]
[/TR]
[TR]
[TD]99-116[/TD]
[TD]MECH ENGINEERING:[/TD]
[TD="align: right"]$25[/TD]
[TD="align: right"]$3.30[/TD]
[/TR]
</tbody>[/TABLE]

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

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Welcome to the Board!

I would recommend using Filters, and Filter out anything less than or equal to zero.
 
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,223,911
Messages
6,175,324
Members
452,635
Latest member
laura12345

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