How to pull data from a table/cell based on a criteria

SCPbrito

New Member
Joined
Aug 1, 2024
Messages
46
Office Version
  1. 365
Platform
  1. Windows
So I'm trying to create a worksheet for tracking the workflow in my job. I have one sheet (1st image) that has work-order status( New, in progress, completed, etc) and i want to pull the qty of these work-orders and display them on another worksheet(2nd image) but only when the status meets my criteria. So for example when status is new i want to pull the qty and have it display under new column, when status is in progress i want to pull the qty and have it display under in progress column.
 

Attachments

  • 2024-09-27_11-47-32.png
    2024-09-27_11-47-32.png
    42.1 KB · Views: 6
  • 2024-09-27_11-51-16.png
    2024-09-27_11-51-16.png
    6.4 KB · Views: 6

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
It's not clear which column is the Status column and which column is the qty (there are two quantities).

Do you want the total of all the quantities for a given status? If yes, consider using the SUMIF function e.g...
Excel Formula:
=SUMIF(Sheet1!A;A, "New", Sheet1!K:K)
 
Upvote 0
Thanks for your reply. The status is the column labeled progress and the qty is the column labeled Qty ordered
 
Upvote 0

Forum statistics

Threads
1,223,214
Messages
6,170,771
Members
452,353
Latest member
strainu

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