English 中文(简体)
Excel - 从几个栏目中编造一个分类清单
原标题:Excel - Create a sorted deduped list from several columns

在几栏中,我有类似数据(例如,一栏名是所有权人1 23人)。 某些物品由一个所有人拥有,有些是两个或三个所有人拥有的联合企业公司。 因此,我只想从三个栏目中找到一份所有者名单。

At the moment I m doing it using a pivot table where I create a new column (starting in BJ2) containing this data:
1
1
1
2
2
2
3
...etc

and then in the next column (BK) I put =IF(INDEX(Owner,BJ2)="","",INDEX(Owner,BJ2)) which when copied own gives me all the owners in one list.

然后,我就“BK:BK”制作一张纸板,我可以用来提取一个分类的、复制的业主名单。 这是ky,但除非我试图对数据进行分类——因为当时我的111 222 333份清单已经全部公布。 因此,如果没有使用任何宏观方法,我如何能够从我的三栏中找到一个分类的清单? <><><> 问 题或许是,我如何保留第111222333444栏,以保持完全相同,无论数据是如何分类的?

<>>> 附录 抢劫

问题回答

Found a solution that does the trick - I make every cell in my column:

=ROUND(ROW()/3,0)

无论我如何对数据进行分类,都总是给予111 222 333美元。

But if anyone has a more elegant way of creating the de-duped list from several columns I d love to hear it. Thanks, Rob





相关问题
import of excel in SQL imports NULL lines

I have a stored procedure that imports differently formatted workbooks into a database table, does work on them then drops the table. Here is the populating query. SELECT IDENTITY(INT,1,1) AS ID ...

Connecting to Oracle 10g with ODBC from Excel VBA

The following code works. the connection opens fine but recordset.recordCount always returns -1 when there is data in the table. ANd If I try to call any methods/properties on recordset it crashes ...

Excel date to Unix timestamp

Does anyone know how to convert an Excel date to a correct Unix timestamp?

C# GemBox Excel Import Error

I am trying to import an excel file into a data table using GemBox and I keep getting this error: Invalid data value when extracting to DataTable at SourceRowIndex: 1, and SourceColumnIndex: 1. As ...

Importing from excel "applications" using SSIS

I am looking for any tips or resources on importing from excel into a SQL database, but specifically when the information is NOT in column and row format. I am currently doing some pre-development ...

热门标签