Hi ,
I have this workbook where I have formulas of the type :
in my column. When i try to copy this sheet, i get #N/A errors where the formula should be.
This is strange since i have another workbook where the following formula gets copied without any problem :
Basically, in both formulas i'm referencing names. Could it be that in the 2nd formula i'm refering to a workbook level named range and in the 1st a worksheet level named range ?
I have this workbook where I have formulas of the type :
Code:
=SUMIF( DATA!keycurrent; G12& " " &$H12 & " " &$J12& " " &$F12; DATA!rev )
This is strange since i have another workbook where the following formula gets copied without any problem :
Code:
=iF( ISBLANK($H6); ""; IF(ISNA( VLOOKUP($H6; Macro_modele_renouv.xls!tablesic; 2; FALSE)); ""; VLOOKUP( $H6; Macro_modele_renouv.xls!tablesic; 2; FALSE)))
Basically, in both formulas i'm referencing names. Could it be that in the 2nd formula i'm refering to a workbook level named range and in the 1st a worksheet level named range ?