将单位和双位数与csv中的空格对齐

时间:2015-12-16 07:42:42

标签: excel excel-formula

我有一个excel文件,我需要保存到.csv或.txt,以便为我正在使用的软件创建特定的格式化文件。 .csv或.txt中的两列包含带有单位和双位数字的数据。将excel文件保存到.csv或.txt时,这些列将使用相应的分隔值(分号,制表符,aso。)分隔。

我正在寻找的是如何在单个数字前面添加一个空格,以便它与两位数字正确对齐。我试图在自定义数字格式中解决这个问题,但我总是在两位数和一位数字前面都有空格。

试图说明(左侧是标准的csv,右侧是我正在寻找的):

;14;3;   --> ;14; 3;

;12;22;  --> ;12;22; 
;13;5;   --> ;13; 5;

1 个答案:

答案 0 :(得分:2)

显示的格式(单元格编号)将导出为CSV元素值。使用数字格式col1,col2,col3 AA, 2,2.00 BB, 3,3.00 CC, 4,4.00 DD, 5,5.00 EE, 6,6.00 FF, 7,7.00 GG, 8,8.00 HH, 9,9.00 II,10,10.00 JJ,11,11.00 KK,12,12.00 LL,13,13.00 MM,14,14.00 将前置空格添加到单个数字值。

<android.support.design.widget.CoordinatorLayout
    android:fitsSystemWindows="true"
    android:layout_height="match_parent"
    android:layout_width="match_parent">

    <android.support.design.widget.AppBarLayout
        android:fitsSystemWindows="true"
        android:layout_height="wrap_content"
        android:layout_width="match_parent">

        <android.support.design.widget.CollapsingToolbarLayout
            android:fitsSystemWindows="true"
            android:layout_height="match_parent"
            android:layout_width="match_parent"
            app:contentScrim="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">

            <ImageView
                android:fitsSystemWindows="true"
                android:layout_height="wrap_content"
                android:layout_width="match_parent"
                android:scaleType="centerCrop"
                android:src="@drawable/u8"
                app:layout_collapseMode="parallax"/>

            <android.support.v7.widget.Toolbar
                android:layout_height="?attr/actionBarSize"
                android:layout_width="match_parent"
                app:layout_collapseMode="pin"/>

        </android.support.design.widget.CollapsingToolbarLayout>

    </android.support.design.widget.AppBarLayout>

    <android.support.v4.widget.NestedScrollView
        android:clipToPadding="false"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <LinearLayout
            android:layout_height="match_parent"
            android:layout_width="match_parent"
            android:orientation="vertical">

            <!-- lots of widgets-->

        </LinearLayout>

    </android.support.v4.widget.NestedScrollView>

</android.support.design.widget.CoordinatorLayout>

中间字段接收自定义数字格式。