remove weekends and holidays data from excel file

조회 수: 1 (최근 30일)
MUKESH KUMAR
MUKESH KUMAR 2019년 1월 15일
답변: KSSV 2019년 1월 15일
I had excel file ABC.xlsx, in which sheet A having data from date 01-04-2017 to 31-12-2018 and the sheet2 having the list dates which are holidays( holiday may be fall on weekends). So now I want to create a another excel to seprate the weekdays and weekends/holidays data???
Thanks

채택된 답변

KSSV
KSSV 2019년 1월 15일
% Read data
T1 = readtable('ABC.xlsx','sheet',1) ;
T2 = readtable('ABC.xlsx','sheet',2) ;
% Get dates common in both
idx = ismember(T1.(1),T2.(1)) ;
% Pick which are not common
T = T1(~idx,:) ;
% write to a file
writetable(T,'test.xlsx')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Calendar에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by