我有1000行并且有一个列,单个条件。我希望一次为一组50行的数据countif
做>= 18
。如何自动更新行号,以便每次都不需要手动输入范围?
其他信息(来自评论):
我在一列和1000行中有一组值(9-100)。我想每50行使用countif
,以便它告诉我每个集合中有多少个案例的值大于18。我不想每次都在<input name="dateSelectAll" type="checkbox"
ng-model="$parent.vm.selectAllDates"
ng-change="vm.clearFields()"
ng-required="vm.selectedReport.Parameters.StartDate == null && vm.selectedReport.Parameters.EndDate == null" />All Available Dates
函数中手动输入范围。
答案 0 :(得分:0)
你可以使用这个:
=COUNTIF((INDIRECT("A"&(ROW()-1)*50+1&":A"&(ROW()-1)*50+50)),">="&18)
填充20个细胞;然后你将获得每50个范围的countif
。