我有一个数据表(在这种情况下是物业租金),并希望根据租金在单独的表单上返回前三个租户。所有属性数据都保存在同一个工作表中,每个属性都有一个唯一的引用,可以用作查找值。
输入
Property Property name Tenant code Tenant Rent
bb107 Property 1 t0000610 Tenant 1 115,000.00
bb107 Property 1 t0000515 Tenant 2 120,000.00
bb107 Property 1 t0000630 Tenant 3 125,000.00
bb107 Property 1 t0000565 Tenant 4 130,000.00
bb107 Property 1 t0000579 Tenant 5 145,000.00
bb110 Property 2 t0000520 Tenant 6 220,000.00
bb110 Property 2 t0000604 Tenant 7 215,000.00
bb110 Property 2 t0000588 Tenant 8 230,000.00
bb110 Property 2 t0000586 Tenant 9 185,000.00
bb110 Property 2 t0000611 Tenant 10 250,000.00
bb110 Property 2 t0000568 Tenant 11 235,000.00
bb115 Property 3 t0000562 Tenant 12 85,000.00
bb115 Property 3 t0000631 Tenant 13 65,000.00
bb115 Property 3 t0000532 Tenant 14 70,000.00
bb115 Property 3 t0000589 Tenant 15 72,500.00
bb115 Property 3 t0000556 Tenant 16 78,750.00
bb115 Property 3 t0000613 Tenant 17 55,000.00
bb115 Property 3 t0000524 Tenant 18 67,500.00
有人可以告诉我我应该在我的工作表上使用的论点a)参考我的查找表中仅与我的特定属性有关的单元格。我有mnay属性(100+)并且无法为每个属性定义名称。 b)如何返回前3个条目的租户引用。一旦我知道前3名租户,我总能查找其他值。
输出应该是这样的:
物业1
bb107 Property 1 t0000579 Tenant 5 145,000.00
bb107 Property 1 t0000565 Tenant 4 130,000.00
bb107 Property 1 t0000630 Tenant 3 125,000.00
财产2
bb110 Property 2 t0000611 Tenant 10 250,000.00
bb110 Property 2 t0000568 Tenant 11 235,000.00
bb110 Property 2 t0000588 Tenant 8 230,000.00
物业3
bb115 Property 3 t0000562 Tenant 12 85,000.00
bb115 Property 3 t0000556 Tenant 16 78,750.00
bb115 Property 3 t0000589 Tenant 15 72,500.00
另一个问题是,如果我给一些条目一个特定的引用,我怎么能只将那些条目拉到我的输出页面上。我正在努力将excel多个标准用于输出(即查找属性1,然后寻找最高价值的租金,然后寻找第二高(或手动输入的代码)等等。
谢谢!
答案 0 :(得分:1)