Hi,
Is it possible to make one cell editable in a non-editable column of a matrix?
I have made a column non-editable. Now, based on a CFL value (which is in another column) selected, i want to make that row's non-editable column as editable.
My code, which fails:
If objMatrix.Columns.Item("V_1").Cells.Item(pVal.Row).Specific.value = 0 Then
objMatrix.Columns.Item("V_0").Cells.Item(pVal.Row).Specific.Enabled = True
End If