Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread.Model Namespace / DefaultSheetDataModel Class / GoalSeek Method
Row index of cell that contains value to adjust
Column index of cell that contains value to adjust
Data model of cell that contains formula
Row index of cell that contains formula
Column index of cell that contains formula
Formula result you wish to achieve


In This Topic
    GoalSeek Method (DefaultSheetDataModel)
    In This Topic
    Attempts to find a value for one cell that produces the desired formula result in another cell.
    Syntax
    'Declaration
     
    
    Public Function GoalSeek( _
       ByVal variableRow As Integer, _
       ByVal variableColumn As Integer, _
       ByVal formulaDataModel As DefaultSheetDataModel, _
       ByVal formulaRow As Integer, _
       ByVal formulaColumn As Integer, _
       ByVal desiredResult As Double _
    ) As Boolean
    'Usage
     
    
    Dim instance As DefaultSheetDataModel
    Dim variableRow As Integer
    Dim variableColumn As Integer
    Dim formulaDataModel As DefaultSheetDataModel
    Dim formulaRow As Integer
    Dim formulaColumn As Integer
    Dim desiredResult As Double
    Dim value As Boolean
     
    value = instance.GoalSeek(variableRow, variableColumn, formulaDataModel, formulaRow, formulaColumn, desiredResult)

    Parameters

    variableRow
    Row index of cell that contains value to adjust
    variableColumn
    Column index of cell that contains value to adjust
    formulaDataModel
    Data model of cell that contains formula
    formulaRow
    Row index of cell that contains formula
    formulaColumn
    Column index of cell that contains formula
    desiredResult
    Formula result you wish to achieve
    See Also