Excel formula work in US not in French

lotus22

New Member
Joined
May 3, 2011
Messages
7
I have simple formula that works in US English excel but not in French.

Formula in English:

=(1+IRR(INDEX($E77:$EF77,5):INDEX($E77:$EF77,LOOKUP(2,1/$E77:$EF77,COLUMN($E77:$EF77)-COLUMN($E77)+1))))^12-1

Formula in french

=(1+TRI(INDEX($E77:$EF77,5):INDEX($E77:$EF77,RECHERCHE(2,1/$E77:$EF77,COLONNE($E77:$EF77)-COLONNE($E77)+1))))^12-1

Same formula shows error !NOMBRE in french

PLEASE HELP!!!
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Hi lotus22,

Maybe is needed you to use the formula in same Excel version because the names varies from older
versions to new ones.

If both are the same versions and to be sure about the translation from English to French, within French
Excel version do this:

1-) In A1 put the formula in English with a "'" at the beginning as follow:

Code:
[B][COLOR=Red]'[/COLOR][/B]=(1+IRR(INDEX($E77:$EF77,5):INDEX($E77:$EF77,LOOKUP(2,1/$E77:$EF77,COLUMN($E77:$EF77)-COLUMN($E77)+1))))^12-1
2-) Run this code,
Code:
Sub Eng_To_AnyLang()
    Range("A2") = Range("A1").Formula
End Sub

Now in B2 you'll have the formula translated into French. This should be the functions names that your
French Excel version understands.

Hope this helps.

Regards
 
Upvote 0
The French version uses semi-colons as list separator, not commas:

=(1+TRI(INDEX($E77:$EF77;5):INDEX($E77:$EF77;RECHERCHE(2;1/$E77:$EF77;COLONNE($E77:$EF77)-COLONNE($E77)+1))))^12-1

You are probably getting a !NUM! error on the English version too.
 
Upvote 0

Forum statistics

Threads
1,224,599
Messages
6,179,827
Members
452,946
Latest member
JoseDavid

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top