+ Reply to Thread
Results 1 to 5 of 5

Decimal Sign Replaced with ; Sign

Hybrid View

  1. #1
    Registered User
    Join Date
    11-23-2009
    Location
    Porto, Portugal
    MS-Off Ver
    Excel 2007
    Posts
    32

    Decimal Sign Replaced with ; Sign

    Hi to all,

    I'm trying to solve a strange problem in a piece of code.
    I have a variable that is define as Double called STD. When i try to insert that variable in a formula the decimal sign (for me a comma "," because I'm Portuguese) gets converted to ";" (which is for me the separation sign for the expressions in excel formulas. ex: AND(A1>0;B1>0)=TRUE). The code is:

    Public STD as Double
    STD = ActiveSheet.Cells(n, NUMBEROFASSETS + 5).Value
    ActiveSheet.Cells(m + 1, n + TOPPAIRS + NUMBEROFASSETS + 7).Formula = "=IF(AND(INDEX(" & SPREAD & "," & m + 1 & "," & n & ")>" & STD & "," & ANT & "=0)=TRUE,-1,IF(AND(INDEX(" & SPREAD & "," & m + 1 & "," & n & ")<-" & STD & "," & ANT & "=0)=TRUE,1,IF(AND(" & ANT & "<>0,SIGN(INDEX(" & SPREAD & "," & m + 1 & "," & n & "))<>SIGN(INDEX(" & SPREAD & "," & m & "," & n & ")))=TRUE,0,IF(AND(" & ANT & "<>0,INDEX(" & SPREAD & "," & m + 1 & "," & n & ")="""")=TRUE,0,IF(" & ANT & "<>0," & ANT & ",0)))))"
    Can anyone help me preventing this automatic conversion?
    Thanks in advance for any advice.

    Edit: I must add, i have tried to convert the sign before using the variable in the formula but with no success. I tried this:
    STD = SUBSTITUTE(STD,"","",""."")
    Last edited by lopiner; 12-10-2009 at 08:48 AM.

  2. #2
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Decimal Sign Replaced with ; Sign

    Once approach might be to switch to

    .FormulaLocal
    Note you would then use ; delimiter etc in your formula string as you would natively, eg:

    .FormulaLocal = "IF(AND(A1=1;A2=2);""x"";""y"")"

  3. #3
    Registered User
    Join Date
    11-23-2009
    Location
    Porto, Portugal
    MS-Off Ver
    Excel 2007
    Posts
    32

    Re: Decimal Sign Replaced with ; Sign

    DonkeyOte and chrns12, thanks for the suggestions.

    chrns12 wrote me this:
    Not sure if this would do it, but try putting a forward slash in front of the comma between the quotes.

    Example: "/,"

    Depending on what you are working with it tells VBA to take the comma literally. Since it's getting converted to a semicolon I'm assuming that the comma has a special meaning within the syntax you are working with.

    Let me know if that worked.
    I have worked this out like this.
    First i have declared the variable as string:
    Public STD As String
    Then i used replace like this:
    STD = Replace(STD, ",", ".")
    This as solved my problem.
    I think this is a big fault for non English language excel because VBA will always convert signs and some of them totally change the meaning of variables (like the decimal sign).
    Thanks again for your suggestions.
    Regards

  4. #4
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Decimal Sign Replaced with ; Sign

    VBA is heavily american-ised hence the issue.

    When you write a comma back to native XL using .Formula XL when "translating" will interpret that as an American argument delimiter hence this is subsequently translated to ; natively in your locale.

    As you say by changing the , to . using the standard Formula based approach XL when translating interprets that as a decimal delimiter (US) and it is thus subsequently translated back to your locale specific decimal delimiter - the comma.

    On the other hand the FormulaLocal property won't conduct any translation of your formula string - the string will be literally inserted as requested without alteration.

    A quick way to illustrate on your own client would be the following:

    Sub Example
    Dim dblValue As Double: dblValue = "29,2"
    Cells(1,"A").Formula = "=IF(" & dblValue & ",1)"
    Cells(2,"A").FormulaLocal = "IF(" & dblValue & ";1)"
    Cells(3,"A").Formula = "=IF(" & Replace(dblValue,",",".") & ",1)"
    End Sub
    You will find the first example returns 2 as the formula translates into

    =IF(29;2;1)
    ie , interpreted as US based argument delimiter - translated to ;

    whereas the latter two both return 1 as both are inserted as

    =IF(29,2;1)
    FormulaLocal - no translation of string

    Formula Replace method - US based decimal delimiter (.) translated to locale specific delimiter (,)

    Which approach you adopt is obviously down to your own personal preference.... though of course if you have thousand separators (.) in your values the Formula Replace method becomes further convoluted (ie 2 replace calls required - in correct order)
    Last edited by DonkeyOte; 12-10-2009 at 08:48 AM. Reason: added final note re: thousands separator

  5. #5
    Registered User
    Join Date
    11-23-2009
    Location
    Porto, Portugal
    MS-Off Ver
    Excel 2007
    Posts
    32

    Re: Decimal Sign Replaced with ; Sign

    DonkeyOte,
    Thanks for the extended explanation and methods to solve this problem. I'm going to tag this thread in hope it helps others with the same problem. This took me a lot of time :D

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1