Combining vlookup and replace-like function?

Smeghead

New Member
Joined
Mar 12, 2013
Messages
35
I have a report with a SQL query which brings up some results with one "user" column which is literally just "user01, user02, user03" etc. among other names.


I'd like to add a "user_actual" sheet to do a vlookup against, so it'd just be 2 columns with "user, actual name" and allow the report user to specify who is actually using that login, i.e. user01 - John, user03 - Mary, user06 - Dave


On the main sheet, I'd like to add a column which is basically a vlookup of the user column value (on the main sheet) against the user_actual sheet. If the "actual name" has a value, then on the main sheet user column, show the username in the format of [USER (ACTUAL NAME], (e.g. "user01 (John)"), otherwise just show the user value. Hopefully this all makes sense?





Current main sheet

[TABLE="class: grid, width: 300, align: left"]
<tbody>[TR]
[TD]USER (from SQL query)[/TD]
[TD]ITEM[/TD]
[TD]QTY[/TD]
[/TR]
[TR]
[TD]USER01[/TD]
[TD]aaa[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]USER03[/TD]
[TD]aaa[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]USER05[/TD]
[TD]bbb[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]DAVE[/TD]
[TD]ccc[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]MIKE[/TD]
[TD]aaa[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]USER02[/TD]
[TD]aaa[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]USER06[/TD]
[TD]aaa[/TD]
[TD]1[/TD]
[/TR]
</tbody>[/TABLE]













New "user_actual" sheet

[TABLE="class: grid, width: 200, align: left"]
<tbody>[TR]
[TD]USER[/TD]
[TD]ACTUAL NAME[/TD]
[/TR]
[TR]
[TD]USER01[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]USER02[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]USER03[/TD]
[TD]BART[/TD]
[/TR]
[TR]
[TD]USER04[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]USER05[/TD]
[TD]LEE[/TD]
[/TR]
[TR]
[TD]USER06[/TD]
[TD]MARY[/TD]
[/TR]
</tbody>[/TABLE]











Final desired:

[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]USER (new column)[/TD]
[TD]ITEM[/TD]
[TD]QTY[/TD]
[TD]USER (from SQL query)[/TD]
[/TR]
[TR]
[TD]USER01[/TD]
[TD]aaa[/TD]
[TD]1[/TD]
[TD]USER01[/TD]
[/TR]
[TR]
[TD]USER03 (BART)[/TD]
[TD]aaa[/TD]
[TD]1[/TD]
[TD]USER03[/TD]
[/TR]
[TR]
[TD]USER05 (LEE)[/TD]
[TD]bbb[/TD]
[TD]1[/TD]
[TD]USER05[/TD]
[/TR]
[TR]
[TD]DAVE[/TD]
[TD]ccc[/TD]
[TD]2[/TD]
[TD]DAVE[/TD]
[/TR]
[TR]
[TD]MIKE[/TD]
[TD]aaa[/TD]
[TD]2[/TD]
[TD]MIKE[/TD]
[/TR]
[TR]
[TD]USER02[/TD]
[TD]aaa[/TD]
[TD]1[/TD]
[TD]USER02[/TD]
[/TR]
[TR]
[TD]USER06 (MARY)[/TD]
[TD]aaa[/TD]
[TD]1[/TD]
[TD]USER06[/TD]
[/TR]
</tbody>[/TABLE]
 
Last edited:

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Hi Smeghead,

Here's a formula you can try...


Excel 2016 (Windows) 32 bit
ABCD
1USERITEMQTYUSER (from SQL query)
2USER01aaa1USER01
3USER03 (BART)aaa1USER03
4USER05 (LEE)bbb1USER05
5DAVEccc2DAVE
6MIKEaaa2MIKE
7USER02aaa1USER02
8USER06 (MARY)aaa1USER06
Sheet1
Cell Formulas
RangeFormula
A2=D2 & IFERROR(SUBSTITUTE(" (" & VLOOKUP(D2,UserLookup!A:B,2,0) & ")"," ()",""),"")



Depending on how you are pulling your SQL query, you could possibly achieve the same result without a formula by modifying the query or using the Data Model.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,900
Messages
6,175,276
Members
452,629
Latest member
SahilPolekar

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