我需要帮助来检查用户是否有"基本"在另一列中(不需要是同一行)并在D列中返回true。
似乎我需要与索引匹配进行一些串联,但我不知道如何去做。有人可以帮忙吗?
Col_A Col_B Co_C Col_D UserA Data1 Basic True UserB Data2 Premium False UserC Data1 Basic True UserA Data2 Classic True
答案 0 :(得分:1)
在<merge xmlns:android="http://schemas.android.com/apk/res/android">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/search_by_subject_label"
android:textStyle="bold"
android:textSize="15sp"/>
<com.learncity.learner.search.SubjectMultiAutoCompleteTextView
android:id="@+id/subject_multi_auto_complete_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:completionThreshold="1"
android:ems="10"/>
</merge>
<merge xmlns:android="http://schemas.android.com/apk/res/android" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/search_by_qualification_label"
android:textStyle="bold"
android:textSize="15sp"/>
<com.learncity.learner.search.QualificationMultiAutoCompleteTextView
android:id="@+id/qualification_multi_auto_complete_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:completionThreshold="1"
android:ems="10"/>
</merge>
或
Cell D2
根据需要拖动/复制。见图片以供参考。