Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Guys,
I need to convert strings containing local numberformats into English numberformats. And, currently, I'm using a cell as 'middleman' :-) Range("A1").NumberFormatLocal = Local_Format_Name English_Format_Name = Range("A1").NumberFormat Is it possible to do this convert without using a worksheet at all? CE |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hallo Charlotte,
Am Sat, 5 Oct 2013 17:10:00 +0200 schrieb Charlotte E.: I need to convert strings containing local numberformats into English numberformats. I use this function to translate local formulas to into english formulas. That will also convert the numberformat. Your string in A1 then call the function into the sheet with =English(A1) Function English(rngC As Range) As String English = rngC.Formula End Function Regards Claus B. -- Win XP PRof SP2 / Vista Ultimate SP2 Office 2003 SP2 /2007 Ultimate SP2 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks, Claus, but that does just what I'm already doing...
....I wanted to avoid using a cell in the process. CE "Claus Busch" wrote in message ... Hallo Charlotte, Am Sat, 5 Oct 2013 17:10:00 +0200 schrieb Charlotte E.: I need to convert strings containing local numberformats into English numberformats. I use this function to translate local formulas to into english formulas. That will also convert the numberformat. Your string in A1 then call the function into the sheet with =English(A1) Function English(rngC As Range) As String English = rngC.Formula End Function Regards Claus B. -- Win XP PRof SP2 / Vista Ultimate SP2 Office 2003 SP2 /2007 Ultimate SP2 |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Charlotte
VBA is not very helpful when it comes to regional settings. Afaik no, the way, at least the fast and easy way, to do this is through the worksheet interface. Best wishes Harald "Charlotte E." skrev i melding ... Thanks, Claus, but that does just what I'm already doing... ...I wanted to avoid using a cell in the process. CE "Claus Busch" wrote in message ... Hallo Charlotte, Am Sat, 5 Oct 2013 17:10:00 +0200 schrieb Charlotte E.: I need to convert strings containing local numberformats into English numberformats. I use this function to translate local formulas to into english formulas. That will also convert the numberformat. Your string in A1 then call the function into the sheet with =English(A1) Function English(rngC As Range) As String English = rngC.Formula End Function Regards Claus B. -- Win XP PRof SP2 / Vista Ultimate SP2 Office 2003 SP2 /2007 Ultimate SP2 |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks, Harald,
I'll continue to use my 'worksheet way'. At least I did it the right way for once :-) CE "Harald Staff" wrote in message ... Hi Charlotte VBA is not very helpful when it comes to regional settings. Afaik no, the way, at least the fast and easy way, to do this is through the worksheet interface. Best wishes Harald "Charlotte E." skrev i melding ... Thanks, Claus, but that does just what I'm already doing... ...I wanted to avoid using a cell in the process. CE "Claus Busch" wrote in message ... Hallo Charlotte, Am Sat, 5 Oct 2013 17:10:00 +0200 schrieb Charlotte E.: I need to convert strings containing local numberformats into English numberformats. I use this function to translate local formulas to into english formulas. That will also convert the numberformat. Your string in A1 then call the function into the sheet with =English(A1) Function English(rngC As Range) As String English = rngC.Formula End Function Regards Claus B. -- Win XP PRof SP2 / Vista Ultimate SP2 Office 2003 SP2 /2007 Ultimate SP2 |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
For once? You are a master, Charlotte. Keep on sharing.
"Charlotte E." skrev i melding ... Thanks, Harald, I'll continue to use my 'worksheet way'. At least I did it the right way for once :-) CE |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel automation through .NET Interop: NumberFormat property looks like NumberFormatLocal | Excel Programming | |||
Cell Format Function "NumberFormatLocal" in VBA | Excel Programming | |||
NumberFormat vs. NumberFormatLocal | Excel Programming | |||
NumberFormat vs NumberFormatLocal | Excel Programming | |||
Copy with NumberFormatLocal included | Excel Programming |