Forum Discussion
seriousmoonlight
Oct 27, 2021Copper Contributor
Replace text with numeric value
I have some survey results that come out as text that I need to transpose to a number. For example Strongly like would get a value of 5, Like - value of 4 etc.
seriousmoonlight
Oct 27, 2021Copper Contributor
Perfect - I can create a table that shows the two values. I have two columns - one has text in it - would like the numeric value in next column. Does that explain it better
SergeiBaklan
Oct 28, 2021Diamond Contributor
You may use something like
=IFERROR( INDEX( numberColumn, MATCH( textToLookup, textColumn, 0 ) ), "no such")