find_formula method

find_formula

Finds the cell with the input string.

Returns

Cell object.

def find_formula(self, formula, previous_cell):
    ...
ParameterTypeDescription
formulastrThe formula to search for.
previous_cellCellPrevious cell with the same formula. This parameter can be set to null if searching from the start.

Remarks

Returns null (Nothing) if no cell is found. NOTE: This member is now obsolete. Instead, please use Cells.Find(object,Cell,FindOptions) method with LookInType as LookInType.OnlyFormulas and LookAtType as LookAtType.EntireContent. This member will be removed 12 months later since November 2018. Aspose apologizes for any inconvenience you may have experienced.

See Also