remove_at method

remove_at

Removes the specified external link from the workbook.

def remove_at(self, index):
    ...
ParameterTypeDescription
indexintthe index of the external link to be removed.

Remarks

When removing the external link, all formulas that reference to it will be removed too because the references become invalid.

remove_at

Removes the specified external link from the workbook.

def remove_at(self, index, update_references_as_local):
    ...
ParameterTypeDescription
indexintthe index of the external link to be removed.
update_references_as_localboolWhether update all references of given external link to reference of current workbook itself.
Check ExternalLinkCollection.clear to get more details about this parameter.

See Also