![Image](https://i.postimg.cc/h4Nfm2rY/hhh.jpg)
I can edit the last column
WITH OBJECT oBrowse:aCols[6]
:cEditPicture := '@ €99,999.99'
:nEditType := EDIT_GET
END
How I can to save also the filed n.12 on array I must save this calc = oBrowse:acols[5]-oBRowse:acols[6]
Code: Select all | Expand
oBrw:Neto:Value := oBrw:Precio:Value - oBrw:Descuento:Value
Code: Select all | Expand
WITH OBJECT oBrowse:aCols[6]
:cEditPicture := '@ €99,999.99'
:nEditType := EDIT_GET
:bOnChange := {|| oBrowse:aCols[12]:Value := oBrowse:aCols[5]:Value - oBrowse:aCols[6]:Value }
END