Asked By
Donna Davis
20 points
N/A
Posted on - 11/23/2012
The text/numerics recorded in the first three columns of a worksheet determine the text/numeric content of the fourth column. I would like to know the best way to set up an autocomplete script excel for the fourth column? Thanks.Â
Setting up an ‘autocomplete script excel’
Â
So you would want the data from columns 1, 2, and 3, to  determine the result for column 4, and the solution to that is not through an "autocomplete excel script" but an excel formula to concatenate the 3 values. Excel concatenation does not compute numerical or textual values in multiple cells, but position the values of each cell in the specific concatenation formula. So for example, you want values inside A1, B1, and C1 to be in a series "C1 A1 B1" order without typing it on D1, then you would type on D1:
Example
A1Â = "the"
B1Â = "fence"
C1Â = "jump over"
Â
D1Â = "=Concatenate(C1,A1,B1)"
I have provided a screenshot for your reference:
Setting up an ‘autocomplete script excel’
Hi Donna DavisÂ
According to your question this Techyv post "Auto fill / Drag and drop in Microsoft Excel" also provided some solutions which one you can apply to fix this issue too.