Vlookup table Formula and IF formula help

Minty5490

New Member
Joined
Jul 13, 2016
Messages
14
Hi,

I am using a vlookup formula. Which works well to pull data from my other sheet. But I want it to just pull the colour only from the cell

Example: Data (jan) from cell a1 is a Blue colour, and has a number example 5. Vlookup sheet (e4), overwrites from the information of the data sheet with the number, but not the colour? I only want the colour and keep the information already in the cell on the vlookup sheet e4.

Formula I am using: =VLOOKUP($E$4,Jan,3,1)

Can anyone help, not sure if I need to put a If or AND, but how?

Thanks
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
To obtain the color of a cell and put it in another cell must be done with a macro.
 
Upvote 0
Well, macros do not go in a formula.
The macros are executed when you press a button or when you modify a cell.
Explain with real data and real examples what you want to do and I prepare the macro. I also explain how to execute the macro.
But you must explain in detail and with examples what you need.
 
Upvote 0
Is your original cell blue (or whatever color) due to conditional formatting or is it done manually?
 
Upvote 0
Calendar Sheet
Staff name (which is a drop down list)
Monday1
Tuesday2
Wednesday3

<tbody style="border-collapse: collapse; width: auto;">
</tbody>
<strike></strike>

<tbody>
</tbody>
Hi,

I was looking a conditioning formatting, but still cant get it. I have a drop down list in the Cell "Staff Name", then when I change to a different staff name. the formation from the other Months sheet. So if staff 1 has a holiday on the 1, 2 , 3. I want it to still say 1, 2, 3, but on the month sheet is says H - Holiday and is in Blue, So I want this sheet with the drop down to change to the colour blue, but keeping 1, 2, 3 in the cell as these dates off the month. I have the months sheet, when you put a H in the cell, it changes to the H and shows blue, which is ok.

in the calendar sheet the formula I am using is =VLOOKUP($E$4,Jan,3,1), which changes the cell to the colour, but put is the H and I want it to only change the colour and keep the date of 1,2,3.

Really, sorry but my knowledge is minimum, but I get stuck to extend something like and can be done?? I wish I can attach my worksheet for you to see both of the worksheet I have done.

Thanks :)
 
Upvote 0
Better upload your book and on the sheet you explain step by step what you want to achieve.

You could upload a copy of your file to a free site such www.dropbox.com. Once you do that, mark it for 'Sharing' and you will be given a link to the file that you can post here. If the workbook contains confidential information, you could replace it with generic data.
 
Upvote 0
Ready.
Summary
The formula buscav is to return value, you can not return colors.
In a cell you can not have a formula and also a value.

To achieve what you need is with a macro.
I give you a macro, do the following:
- Determine the sheet of the month, with row 7.
- Search in the month sheet.
- Find the staff in column B
- Find the day in row 4
- Get the letter according to the intersection of staff and day.
- Find the letter in row 1 and get the color
- Put the color in the day.


You can change the status and you will see that the automatic macro changes the values ​​of the days according to the data in the month sheet.

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim r As Range, c As Range, b As Range, mes As String, col As Long
    Dim staff As String, meses As Variant, m As Long, letra As String
    
    If Not Intersect(Target, Range("E4")) Is Nothing Then
        If Target.Count > 5 Then Exit Sub
        staff = Target.Cells(1).Value
        
        meses = Array("E8:I14", "K8:O14")       'add range for each month
        
        For m = 0 To UBound(meses)
        
            Set r = Range(meses(m))
            mes = r.Offset(-1).Cells(1)
            For Each c In r
                If c.Value <> "" Then
                    Set b = Sheets(mes).Rows(4).Find(c.Value, LookIn:=xlValues, lookat:=xlWhole)
                    If Not b Is Nothing Then
                        col = b.Column
                        Set b = Sheets(mes).Columns("B").Find(staff, LookIn:=xlValues, lookat:=xlWhole)
                        If Not b Is Nothing Then
                            letra = Sheets(mes).Cells(b.Row, col).Value
                            Set b = Sheets(mes).Rows(1).Find(letra, LookIn:=xlValues, lookat:=xlWhole)
                            If Not b Is Nothing Then
                                c.Interior.Color = Sheets(mes).Cells(1, b.Column).Interior.Color
                                If c.Interior.ColorIndex = 2 Then
                                    If Not WorksheetFunction.IsEven(c.Column) Then
                                        c.Interior.Color = 15921906
                                    End If
                                End If
                            Else
                            End If
                        End If
                    End If
                End If
            Next
        Next
    End If
End Sub

---
The macro is in the events of your sheet.
SHEET EVENT
Right click the tab of the sheet you want this to work, select view code and paste the code into the window that opens up.

---
Test file

https://www.dropbox.com/s/h9szv2gsqexx5a6/Holiday Chart 2019 DUMMY dam.xlsm?dl=0
 
Upvote 0
Hi

Many thanks for the test file. I can see it working, but when i create another month sheet for March and right click, it pops open the marco, I pasted the code above, but nothing on the calendar sheet, nothing appear in that month for March?

Really sorry, thank you for having a go for me :)

I will try to figure something else out, Just not into Macro`s. Thank you :)
 
Upvote 0

Forum statistics

Threads
1,215,420
Messages
6,124,803
Members
449,190
Latest member
cindykay

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