Match or Index Question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

My data table is set-up like this:

DataTable Raw Adjusted Special Total
BOX050 90 96.67 0 96.67
BOX060 167 179.01 0 179.01
BOX234 0 0 0 0
BOX355 104 115.34 0 115.34
BOX549 156 166.01 2 168.01

I am trying to create a table like this and think it is possible with index
and match functions:

New Table Raw Adjusted Special Total
BOX050 90 96.67 0 96.67
BOX355 104 115.34 0 115.34
BOX549 156 166.01 2 168.01
BOX898 No Match No Match No Match No Match


Is it possible ?

Thank you in advance.
 
Is there any reason why you can't just sort your list?

Insert a "helper" column and extract the 3 digits:

=--RIGHT(A2,3)
And copy down as needed.

Then select the *entire* list, including the inserted "helper" column, and
sort on the helper.
You can then delete the "helper".
--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================
 
sort does not solve the problem. thank you anyways. need the formula to do
matching of the values.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Matching Question 3
Index / Match Question 1
INDEX OR Match Problem 1
Comparing 2 Tables 6
Concatenation Problem / VBA ? 5
Complex LookUp / Match Problem ?? 2
Using Conditional Formating / 4
Index and Match 8

Back
Top