Excel宏用于在特定列单元格中输入日期时自动隐藏行

时间:2017-07-22 07:16:03

标签: excel vba hide rows

我是VBA的新手,我还在学习。我想要完成的事情似乎很容易,但我遇到了困难。我需要编写一个宏,当一个日期(任何日期)输入到特定列的单元格中时,该宏会自动隐藏一行。

E.g。数据记录在A列中:F。当“已发货”日期输入G2时,第2行会自动隐藏。

非常感谢任何帮助。

感谢。

MCJ

1 个答案:

答案 0 :(得分:0)

如果编辑“G”列中的单元格并将其更改为0到当前日期之间的日期(数字),则以下VBA代码将隐藏关联的行:

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.bye.hey.coordinator.MainActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

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

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        app:layout_behavior=".Behaviour"
        android:layout_height="match_parent">

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

            <View
                android:layout_width="match_parent"
                android:layout_height="300dp"
                android:background="@color/colorPrimaryDark" />

            <View
                android:layout_width="match_parent"
                android:layout_height="300dp"
                android:background="@color/colorPrimaryDark" />

            <View
                android:layout_width="match_parent"
                android:layout_height="300dp"
                android:background="@color/colorPrimaryDark" />
        </LinearLayout>
    </android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>