How to Add custom Excel column values in Excel file based on conditional contents?
3 views (last 30 days)
Show older comments
Dear all
i have a large Excel file involve (1000+) countries and their states and variables ... i need to to add column in the last called (label) which involve numeric values based on column A content .. for example if column A include UK then, the values of label column is (1) for all UK rows ... and label value is (2) for all USA rows...and so on for others..
Country-name(A1) State-name(B1) ..... variables names.... (Lables)
UK WSG ....values .............. 1
USA FLO ......................... 2
UK SLE ......................... 1
PLG SEO ......................... 3
etc.. etc..
So kindly is this possible to be implement in matlab? thanks
0 Comments
Accepted Answer
Andrei Bobrov
on 3 Apr 2017
T = readtable('yourdataexcel.xlsx');
[~,~,c] = unique(T(:,1),'stable');
Tout = [T,table(c,'Variablenames',{'Label'})];
0 Comments
More Answers (0)
See Also
Categories
Find more on Spreadsheets in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!