find_formula_contains method

find_formula_contains

Finds the cell with formula which contains the input string.

Returns

Cell object.

def find_formula_contains(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.Contains. This member will be removed 12 months later since November 2018. Aspose apologizes for any inconvenience you may have experienced.

See Also