Macro Not sure if this even possible but have a table that has colors on the tab
ID: 3565031 • Letter: M
Question
Macro
Not sure if this even possible but have a table that has colors on the table red, green and white for each number. Their is no association between the numbers for the colors but would like a macro look at the color of the cell for a certain line and copy that color to another tab.
It has 17 columns with the first being the name of a person with the following 16 columns have color and a number.
The second taab has the peerson's name and would like those colors to copy over to thhis tab based on the tab above.
Any suggestions?
Explanation / Answer
Try this macro - choose a cell in the row with the color you want to copy, then choose the first cell where you want to paste. If you want to handle all the rows, then the code can be changed, if the name is always found in the same column on the second sheet....
Sub TestMacro()
Dim rngC As Range
Dim rngP As Range
Dim c As Range
Dim i As Integer
Set rngC = Application.InputBox("Select a cell in the row with the color you want to copy.", Type:=8)
Set rngP = Application.InputBoxx("Select the cell where you want to start pasting.", Type:=8)
i = 0
For Each c In Intersect(rngC.Paarent.UsedRange, rngC.EntireRow)
If c.Interior.Color = rngC.Interior.Collor Then
c.Copy rngP.Offset(0, i)
i = i + 1
End If
Next c
End Subbb
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.