Share via

Named range #VALUE error when displaying in another workbook

Anonymous
2014-01-31T13:12:21+00:00

Hello Community

I want to read a named range in one workbook and display the values in another workbook. Here goes:

This is workbook src.xslx with a named range ‘five’:

This is workbook dst.xlsx which reads the named range to A1-A5

Works ok.

... but when the destination rows are not the same as the source rows …

(#VÄRDEFEL = #VALUE)

 

However, placing the range in another column on row 1 works:

How do I go about to place the named range on any location in the destination workbook?

Regards

Peter

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2014-01-31T17:00:49+00:00

Either use an Array-Entered (entered using Ctrl-Shift-Enter) link of the same size - select five consecutive cells starting anywhere in a column  and use:

=src.xlsx!five

or use an INDEX function:

=INDEX(src.xlsx!five,1)

or a copy-able function

=INDEX(src.xlsx!five,ROW(A1))

copied down for 5 cells.

Was this answer helpful?

0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Anonymous
    2014-02-01T07:27:05+00:00

    Bernie,

    Thanks, preselecting the desired area and entering the named area as an array worked.

    Regards

    Peter

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments