Dear friends:
Have a nice day.
I am looking for a small sample to record formulas in a excel sheet using TOLE.
somebody can help me ?
Best regards
Formulas in exel
- Armando
- Posts: 3271
- Joined: Fri Oct 07, 2005 8:20 pm
- Location: Toluca, México
- Been thanked: 2 times
- Contact:
Formulas in exel
SOI, s.a. de c.v.
estbucarm@gmail.com
http://www.soisa.mex.tl/
http://sqlcmd.blogspot.com/
Tel. (722) 174 44 45
Carpe diem quam minimum credula postero
estbucarm@gmail.com
http://www.soisa.mex.tl/
http://sqlcmd.blogspot.com/
Tel. (722) 174 44 45
Carpe diem quam minimum credula postero
- Enrico Maria Giordano
- Posts: 8753
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Has thanked: 1 time
- Been thanked: 4 times
- Contact:
Re: Formulas in exel
Code: Select all | Expand
oSheet:Cells( nRow, nCol ):Value = "=your formula here"
Note the equal sign.
EMG
- Armando
- Posts: 3271
- Joined: Fri Oct 07, 2005 8:20 pm
- Location: Toluca, México
- Been thanked: 2 times
- Contact:
Enrico:
Thanks so much, problem solved with your help (as usual)
Now another question !
Is there a way to know the version of excel that is being used ?
I mean, =SUM(), (English language) is not equal to =SUMA() (Spanish language) how to know when to use one and when to use an other one ?.
Best regards
Thanks so much, problem solved with your help (as usual)
![Wink :wink:](./images/smilies/icon_wink.gif)
Now another question !
Is there a way to know the version of excel that is being used ?
I mean, =SUM(), (English language) is not equal to =SUMA() (Spanish language) how to know when to use one and when to use an other one ?.
Best regards
SOI, s.a. de c.v.
estbucarm@gmail.com
http://www.soisa.mex.tl/
http://sqlcmd.blogspot.com/
Tel. (722) 174 44 45
Carpe diem quam minimum credula postero
estbucarm@gmail.com
http://www.soisa.mex.tl/
http://sqlcmd.blogspot.com/
Tel. (722) 174 44 45
Carpe diem quam minimum credula postero
- Enrico Maria Giordano
- Posts: 8753
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Has thanked: 1 time
- Been thanked: 4 times
- Contact:
- Armando
- Posts: 3271
- Joined: Fri Oct 07, 2005 8:20 pm
- Location: Toluca, México
- Been thanked: 2 times
- Contact:
Enrico:
Thanks for your replay.
In Spanish versión does not work a formula in English language
=SUM() <> =SUMA()
Regards
Thanks for your replay.
In Spanish versión does not work a formula in English language
=SUM() <> =SUMA()
Regards
SOI, s.a. de c.v.
estbucarm@gmail.com
http://www.soisa.mex.tl/
http://sqlcmd.blogspot.com/
Tel. (722) 174 44 45
Carpe diem quam minimum credula postero
estbucarm@gmail.com
http://www.soisa.mex.tl/
http://sqlcmd.blogspot.com/
Tel. (722) 174 44 45
Carpe diem quam minimum credula postero
- Enrico Maria Giordano
- Posts: 8753
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Has thanked: 1 time
- Been thanked: 4 times
- Contact:
Code: Select all | Expand
#define msoLanguageIDInstall 1
#define msoLanguageIDUI 2
#define msoLanguageIDHelp 3
FUNCTION MAIN()
LOCAL oExcel := CREATEOBJECT( "Excel.Application" )
LOCAL oApp := oExcel:CommandBars( "Standard" ):Application
? oApp:LanguageSettings:LanguageID( msoLanguageIDInstall )
? oApp:LanguageSettings:LanguageID( msoLanguageIDUI )
? oApp:LanguageSettings:LanguageID( msoLanguageIDHelp )
? oExcel:LanguageSettings:LanguageID( msoLanguageIDInstall )
INKEY( 0 )
RETURN NIL
EMG
- Armando
- Posts: 3271
- Joined: Fri Oct 07, 2005 8:20 pm
- Location: Toluca, México
- Been thanked: 2 times
- Contact:
Thank you Mr. Enrico:
I'll try
Best regards
I'll try
Best regards
SOI, s.a. de c.v.
estbucarm@gmail.com
http://www.soisa.mex.tl/
http://sqlcmd.blogspot.com/
Tel. (722) 174 44 45
Carpe diem quam minimum credula postero
estbucarm@gmail.com
http://www.soisa.mex.tl/
http://sqlcmd.blogspot.com/
Tel. (722) 174 44 45
Carpe diem quam minimum credula postero