Sum quarterly rows into annual results of revenue

1 Ansicht (letzte 30 Tage)
Philip Chindamo
Philip Chindamo am 28 Feb. 2019
Beantwortet: Akira Agata am 1 Mär. 2019
Capture.PNG

Antworten (1)

Akira Agata
Akira Agata am 1 Mär. 2019
How about the following?
% Create data table with same structure of yours
Date = repelem(datetime(2017,3,1)+3*calmonths(0:3),1,3)';
Code = repmat(categorical({'abc','def','ghi'}),1,4)';
Quantity = randi(100,12,1);
Price = randi(10,12,1)/10;
T = table(Date,Code,Quantity,Price);
% Calculate yearly revenue for each code
group = findgroups(T.Code);
Revenue =...
splitapply(@(x,y) sum(x.*y),T.Quantity,T.Price,group);

Kategorien

Mehr zu Financial Toolbox finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by