Text encoding (converting to numeric) based on user-defined rules in Excel

痴心易碎 提交于 2019-12-20 06:36:48

问题


I have data in text form that I need to encode/convert to numeric form according to rules I defined. To clarify:

Need formula for output column so that it compares original text data with text-number encoding rules and returns numeric value of text in each row.


回答1:


Put this in C3 and drag down:

=INDEX(F$2:F$6,MATCH(A3,E$2:E$6,0))


来源:https://stackoverflow.com/questions/34124334/text-encoding-converting-to-numeric-based-on-user-defined-rules-in-excel

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!