I am using unoconv to convert different xlsx reports into csv. One of the reports has a merged cell like below.
Column_1 Column_2 Column_3 Column_4
C ABC DEF 123
ABC DEF 123
ABC DEF 123
Whenever I convert the xlsx file into csv. The merged cell which is column_1 is not filled with values like this.
Column_1,Column_2,Column_3,Column_4
C,ABC,DEF,123
,ABC,DEF,123
,ABC,DEF,123
Is there any option in unoconv to fill the merged cells with value? Or is there any possible work around with this using awk maybe?
Desired Ouput:
Column_1,Column_2,Column_3,Column_4
C,ABC,DEF,123
C,ABC,DEF,123
C,ABC,DEF,123