Vlookup that copies formatting?

Khodex

New Member
Joined
Mar 2, 2024
Messages
2
Office Version
  1. 2021
Platform
  1. Windows
Hey there, I tried googling around and couldn't find a good answer for what I need.
I am making a small information lookup tool in excel where I select a company name and it displays the information.
One of the cells is for comments and I want the comment cell to retain formatting when it gets put into the lookup sheet.
Some words are bold, colored, or both and I want to keep that information. I am fine working in vba but most of my vba knowledge stems from working in Access so I am not sure how to accomplish this.

I was going to just create a function that uses vlookup to locate the cell location and then copy the contents with formatting but the problem is I am not sure how to do that.
I am open to better methods or ideas that accomplish the same goal!

I haven't decided on how big I want the cell/box for this function to go into is yet either as the amount of text varies. I assume that if I just copy the text with formatting though it will follow standard excel pasting rules and wont resize the cell so I can just designate a large box for comments and have it center.
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Formatting isn't part of a cells contents. So, it can't be retrieved with lookup functions.
Have you considered a VBA solution?
 
Upvote 0
Formatting isn't part of a cells contents. So, it can't be retrieved with lookup functions.
Have you considered a VBA solution?
I am open to a vba solution but unsure how to do it.
 
Upvote 0
Welcome to the MrExcel forum!

There is a roundabout way to include the formatting without VBA. Be aware that this is only for appearance only, the result of the lookup cannot be used by anything else. For the examples below, I'm just using pictures, since xl2bb doesn't capture a lot of the in-cell formatting.

1709433922904.png


I built the table in E:F, I imagine yours will be similar. Next step, select cell F2, and copy it (Control-C). Then select cell B2, and Paste Special >Linked Picture (under Other Paste Options).

In C1 (or wherever you want), put this formula:
Excel Formula:
=MATCH(A2,$E$2:$E$6,0)

Now go to the Formulas tab, and click on Define Name. Set it up like this:

1709434357195.png


Click OK. Finally, click on the B2 cell, and change the formula from =$F$2 to =CommentCell like this:

1709434548488.png


Click on the check mark and you're done! If you go back to my original picture, if you change the name in A2 to one of the other names in the table, the text will show up as formatted. What's happening is that there is actually a picture that overlays the B2 cell. It dynamically changes based on the formula, which has to be a defined name. If you use the arrows to get to that cell, as opposed to just clicking on it, you'll see in the formula bar that there's nothing in it. So it's view only. If you need something else, then you'll need VBA. I'll leave that to awoohaw if that's your preference.
 
Upvote 0

Forum statistics

Threads
1,215,073
Messages
6,122,976
Members
449,095
Latest member
Mr Hughes

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