G
G Man
Hi I am trying to write a function to return the interior colour of a cell
which I reference. I am having difficulty getting this to work.
Basically I want to define a function like CKCellColour, use this in the
excel worksheet as a formula like =CKCellColour(M38)
Then have this function return the interior colour of cell M38
The function I have defined is as follows:
Function CKCellColour(CellRef as Range)
Range(CellRef).Select
CKCellColour = Range(CellRef).Interior.ColorIndex
End Function
This function never seems to get the range ref. Can someone help me solve
this problem.
Thanks for your help in advance.
which I reference. I am having difficulty getting this to work.
Basically I want to define a function like CKCellColour, use this in the
excel worksheet as a formula like =CKCellColour(M38)
Then have this function return the interior colour of cell M38
The function I have defined is as follows:
Function CKCellColour(CellRef as Range)
Range(CellRef).Select
CKCellColour = Range(CellRef).Interior.ColorIndex
End Function
This function never seems to get the range ref. Can someone help me solve
this problem.
Thanks for your help in advance.