Forum Discussion
Jose_E_Martinez
Oct 26, 2023Copper Contributor
Automatic Translation from "F" Fila in Spanish to "R" Row in English
Hi all, I am using in some functions the letter "F" as Spanish reference to Row, But when sharing my files with colleagues in US, UK or Germany, their excel do not recognize nor translate the "F...
- Oct 26, 2023
So why can't you use simply
=OFFSET([ThisCellReference],-1,0)
For example, the formula in cell J10 would be:
=OFFSET(J10,-1,0)
Note that no circular reference is caused by this formula. And it will always refer to the cell immediately above it (though obviously in row 1 it will result in an error).
Regards
Jose_E_Martinez
Oct 26, 2023Copper Contributor
Hi Jos
this is one example:
=INDIRECTO("F"&TEXTO(FILA()-1;"0")&"C"&COLUMNA();FALSO)+1
I would need the "F" and the "C" references to Row and Column,
to be translated or useful in all languages Spanish, English, German, French...
- JosWoolleyOct 26, 2023Iron ContributorCan I ask what the intended use for this formula is? Clearly it is simply referring to the cell directly above that in which the formula lies, so the question becomes: why are you going to such lengths to create such an indirect reference?
- Jose_E_MartinezOct 26, 2023Copper ContributorHi,
on my file there are other formulas more complex, also using this kind of references
=SI(AC13<>"";SI.ERROR(INDIRECTO("F"&COINCIDIR(INDIRECTO(BG13&FILA(AC13));$A:$A;0)&"C"&TEXTO(COINCIDIR("INI";$7:$7;0)+SI("F"=INDIRECTO(BH13&FILA(AC13));SI(INDIRECTO("F"&COINCIDIR($B13;$A:$A;0)&"C"&TEXTO(COINCIDIR("FI2";$7:$7;0);"0");FALSO)<>0;COINCIDIR("FI2";$7:$7;0)-COINCIDIR("INI";$7:$7;0);COINCIDIR("FIN";$7:$7;0)-COINCIDIR("INI";$7:$7;0));0);"0");FALSO)+SI(INDIRECTO(BI13&FILA(AC13))="+";1;-1)*$E13;0);0)
On the first example we need a system to be sure that if we introduce rows between our calculations this cell is always referring to just above cell
On the second example, it is difficult to explain how they work, as the file was created by somebody that left the company,
So I just trying to keep the file working and sharing it with my colleagues around the world
Thanks- SergeiBaklanOct 26, 2023Diamond Contributor
I guess your formula returns something like R6C5. Same could be returned by =ADDRESS(6,5,1,0) without F/R and C.