Remove a cell from a range
How do you remove a cell (Range) from a range object.
I have a named range and I want to remove the selected cell from the range.
IE.
Range namedRange; // Contains selecedRange
Range selecedRange;
namedRange.Remove(selecedRange);
Is this possible?
|