2

I have a list of transactions that I will be importing into Quickbooks, and because of their file format requirements, each transaction takes up 3 rows in Excel. Is it possible to sort the transactions by date (which is in column D of the first and second of the three rows), while keeping the rows grouped by transaction?

Thanks!

4

2 回答 2

2

使用自定义按两列排序 - 为每笔交易添加一个具有唯一编号的列(也许您已经有一个),然后首先按该列排序,然后按您想要的列和日期排序

于 2013-06-04T18:07:33.697 回答
0

我创建了一个新列并使用了一个函数,如果它是不同的事务,则分配一个新值,但如果不是,则保持不变:

=IF(NOT(B2=B1), Q1+1,Q1)

例如,这将为您的交易提供不同的数字。然后你可以按这个新列排序。

=IF(NOT(B2=B1), RAND(),Q1) 

如果您想随机执行此操作,请使用此选项,然后按该列排序

于 2017-03-23T20:05:58.870 回答