Forum Discussion
#REF! Informular when Cut/Paste the reference cells
The attached is built from relative named ranges and a named formula. The purpose of the named formula is simply to avoid the need for Ctrl+Shift+Enter that is required by almost all versions of Excel to commit an array formula.
= MAX( ( performance="X") * percentage * fullScore )
- SergeiBaklanMar 30, 2019Diamond Contributor
Hi PeterBartholomew1 ,
I believed you add named range variant... As a comment, your legend
could confuse people who are not familiar with named ranges. If to do that from scratch for another workbook, stay on row 29, copy formula and add it as "performance" due to implicit intersection, you have wrong result, you are to be on row 22. That's just cosmetic.
- PeterBartholomew1Mar 30, 2019Silver Contributor
You are correct of course. What I mean is
but most users are more familiar with the hybrid A1 notation that looks like an absolute reference but behaves as a relative reference.
For my own use, I could well go with
= fullScore * MMULT( N(performance="X"), percentage )
which would allow me to use 2D ranges (MMULT being just about the only formula I know that will process a 2D array by row or by column).
- SergeiBaklanMar 30, 2019Diamond Contributor
PeterBartholomew1 , yes, but that forwards to CSE