Nov 2019
4:09pm, 28 Nov 2019
9,619 posts
|
larkim
Copy that formula across 9 columns, with locked references as
$A$2:$A$114 $L2 B$2:B$114
Perhaps add some =if(iserrror()) clause in there too to aviod #N/As
|
Nov 2019
4:09pm, 28 Nov 2019
9,620 posts
|
larkim
I meant the non-named fomula, btw
|
Nov 2019
4:19pm, 28 Nov 2019
9,622 posts
|
larkim
Scratch that, it doesn't work for multiple "Alberts" in Col B / C / D etc of course
|
Nov 2019
4:23pm, 28 Nov 2019
42,859 posts
|
Diogenes
I've also noticed that it only works on one column, not multiple columns, even without the array
|
Nov 2019
4:31pm, 28 Nov 2019
29,728 posts
|
SPR
I think adding helper columns to allocate one column per specific approver might be the way to go.
|
Nov 2019
4:43pm, 28 Nov 2019
42,860 posts
|
Diogenes
Yes, I'm in the process of doing that. Thanks all.
|
Nov 2019
9:33am, 29 Nov 2019
116,432 posts
|
GregP
Okay this must be easy but it's stumping me. I want a spinner with the cell it's changing in the middle. That *can't* be hard, surely?
|
Nov 2019
10:01am, 29 Nov 2019
1,444 posts
|
um
Greg - you mean between an up & down arrow? Or will 'to the right of' (or left) do?
|
Nov 2019
10:59am, 29 Nov 2019
42,879 posts
|
Diogenes
Another question if I may: Is there a way to apply a change to a range of cells to update a value where that value is not blank
For example, the logic is "IF A2 IS NOT BLANK THEN A2=A1"
The purpose is to replace the name of the person with a document number. I want to apply this to a range A2:Z10 I'm going to need a helper column, aren't I?
|
Nov 2019
11:07am, 29 Nov 2019
29,736 posts
|
SPR
IF(A2<>"",A1,?)
|