Hello I'm pretty new to all this but currently I have a vlookup formula on one worksheet that when i type in a search it gives me back the data in the column. Now on the database worksheet i added a comment picture using the fill color technique. My question is there a way on the first worksheet to have the comment fill picture come up. Currently I am using a code to only output the text, is there a way to add to this code to include the fill picture as well? Here is my code for the comment output:

Function udfLookupComment(Lookup_value As Variant, Table_array As Variant, Col_index_num As Variant, _
Range_lookup As Variant) As Variant

Dim vntItem As Variant
Dim lngRow As Long
Dim lngCol As Long
Dim objComment As Comment

udfLookupComment = "comment"

On Error GoTo ErrLookupComment

vntItem = Application.WorksheetFunction.VLookup(Lookup_value, Table_array, Col_index_num, Range_lookup)

lngRow = Application.WorksheetFunction.Match(Lookup_value, Table_array.Columns(1), 0)
Set objComment = Table_array.Cells(lngRow, Col_index_num).Comment
udfLookupComment = objComment.Text



ErrLookupComment:
Exit Function

End Function


Where I want the text to output on the worksheet i have the forumla in the cell:
=udflookupcomment(D11,Data!$A$2:$F$10000,1,FALSE)

Hopefully there is an easy method to include the fill picture in my output? Any help would be greatly appreciated.