Vlookup problems

Letto4135

New Member
Joined
May 25, 2017
Messages
19
I am making a spreadsheet that automatically alphabetized as data is input by last name then first name for those that have the same last name, problem is I can't figure out how compare the two.

I have helper columns that trim to last name only, and countif <= converts last name into numbers that are numerically the order the last name should be in order to alphabetize.

After this the vlookup I use finds #1 and inputs that name.

Problem I have is if there are two last names that are the same it skips a number and then will have two of the next number, ex. skips 10 then two 11s. This creates a problem for the vlookup when there is no #10 it leaves the space blank.
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
can you give a sample table of your data?
 
Upvote 0
can you give a sample table of your data?

I'm not at work anymore but I can attempt to recreate some of it.

Original input
Debra Smith
Chris Faro
Ted Blankenship
Bill Blankenship

The first helper (trim right repl) colum makes it
Smith
Faro
Blankenship
Blankenship

Second helper (countif <=) makes it
4
3
2
2

Vlookup looks for the number and inputs the original input like this.
1 Blank space
2 Ted Blankenship
3 Chris faro
4 Debra smith

If I could tell it to look at last name then see if there is a duplicate then compare first names of the duplicates to alphabetize between them it would work but I can't find a way.
 
Upvote 0
Imgur: The most awesome images on the Internet This is where the names get trimmed to last name only

Imgur: The most awesome images on the Internet This "counts" the names in alphabetical order but makes the zeros blank spaces so I added;

Imgur: The most awesome images on the Internet This to subtract the zero spots to make them negative

Last step Imgur: The most awesome images on the Internet

That blank in the first spot is my problem. Can't get it to work, I'm not sure where I'm even stuck.


The formulas in the order of the pictures are

=TRIM(RIGHT(SUBSTITUTE(E2," ",REPT(" ",100)),100))

=COUNTIF($D$2:$D$17,"<="&D2)

=COUNTIF($D$2:$D$18,"<="&D2)-COUNTIF(C2:C17,"0")

=IFERROR(VLOOKUP(1,$B$2:$E$17,4,FALSE),"")
 
Upvote 0

Forum statistics

Threads
1,215,984
Messages
6,128,110
Members
449,421
Latest member
AussieHobbo

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