Move 2 Columns and Values into separate Columns for each value formula

darrenmccoy

New Member
Joined
Mar 26, 2019
Messages
37
Office Version
  1. 2019
Could someone help me with a lookup formula to move the data from (46k rows) to columns and rows? The person is the CLIENTID. The CLIENTID has multiple CLIENT TYPES. See my example:

<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>
LOOK UP DATANEW DATA
CLIENTIDCLIENT TYPEClient IDAppraisalBuyerOwnerPast BuyerPast OwnerPast VendorPurchasedPurchaserSold By OtherVendor
2Past Owner2TRUE
3Past Owner3TRUE
695Owner6TRUETRUETRUE
6Past Owner13TRUE
6Owner14TRUE
6Past Vendor
13Past Owner
13Past Owner
14Purchased
15Past Owner

<colgroup><col style="width: 61px"><col width="79"><col width="57"><col width="73"><col width="74"><col width="75"><col width="85"><col width="81"><col width="83"><col width="88"><col width="75"><col width="75"><col width="89"><col width="80"></colgroup><tbody>
</tbody>
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Try this,


Book1
ABCDEFGHIJK
1CLIENTIDCLIENT TYPE
22Past Owner
33Past Owner
4695Owner
56Past Owner
66Owner
76Past Vendor
813Past Owner
913Past Owner
1014Purchased
1115Past Owner
12
13Client IDAppraisalBuyerOwnerPast BuyerPast OwnerPast VendorPurchasedPurchaserSold By OtherVendor
142 TRUE
153TRUE
166TRUETRUETRUE
1713TRUE
1814TRUE
Sheet1
Cell Formulas
RangeFormula
B14=IF(ISNUMBER(MATCH($A14&B$13,INDEX($A$2:$A$11&$B$2:$B$11,),0)),"TRUE","")
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,744
Members
448,989
Latest member
mariah3

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