Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
180
Unbound Column is calculated and editable
posted

When I start my form all records are marked as edited (little pencil icon on the left).  When I comment out the code in my AfterCellUpdate event this doesn't happen.

I have an unbound column that contains value based on a bound column.

During

InitializeRow 

e.row.cells("UnboundCol").value = e.row.cells("BoundCol").value * 1.1

... and during

AfterCellUpdate

if e.cell.column.key = "UnboundCol" then

   e.cell.row.cells("BoundCol").value = e.cell.row.cells("UnboundCol").value / 1.1

end if

 

Am I doing it wrong?