A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hello,
with the costing string in cell A1, you can extract the first three characters like this:
=left(A1,3)
the next five like this
=mid(A1,4,5)
and the last 4 like this
=right(A1,4)
You can insert these functions into a Vlookup like this:
=vlookup(left(A1,3),DepartmentTable,2,false)
=vlookup(mid(A1,4,5),AccountTable,2,false)
=vlookup(right(A1,4),AnalyticalTable,2,false)