Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有下表:
我想为 , 和 加上" "的Person数量。我想采用所有组合,例如:、、等等。Date=28/02/2011time=3gender=1young/old=1Date=28/02/2011time=3gender=0young/old=0
Person
Date=28/02/2011
time=3
gender=1
young/old=1
gender=0
young/old=0
我怎样才能用excel做到这一点?
你想要一个数据透视表。将 Value 设置为 Count of Day (不管你计算什么,但 day 会做),将 Row 设置为时间,将列设置为性别。您可以根据自己的喜好将 old/young 设置为行或列。然后查看您想要的值的交叉点。
如果您使用的是 Excel 2007 或更新版本,则有一些函数COUNTIFS(...)可以SUMIFS(...)让您对计数或总和施加条件。听起来SUMIFS(...)就是你想要的。
COUNTIFS(...)
SUMIFS(...)