Fórmulas con la clase TExcels
Posted: Wed Mar 22, 2006 3:50 pm
Es posible almacenar fórmulas con la clase TExcels de Viktor?
Como?
Como?
www.FiveTechSoft.com
https://forums.fivetechsoft.com/
Code: Select all
METHOD Formula( nRow , nCol , cValue ) CLASS TExcelScript // [ Vikthor ]
#IFDEF __XHARBOUR__
TRY
::oSheet:Cells( nRow , nCol ):FormulaLocal:=cValue
CATCH
MsgStop( "La formula no es correcta "+cValue , "Aviso al usuario")
END
#ELSE
::oSheet:Cells( nRow , nCol ):FormulaLocal:=cValue
#ENDIF
RETURN( Nil )