我们都知道Excel具有非常实用的自动填充选项。我遇到了一个问题,我有3660个字段,我想在其中计算内容。所以我的公式如下:
=COUNTIF(A2:A3660;A2)
这计算A2值在给定范围内出现的次数。现在,如果我使用Excel的自动填充将其复制到所有3660个字段,则公式会自动增加到
=COUNTIF(A3:A3661;A3)
这当然不是所希望的。所以我试着有几个像
的字段=COUNTIF(A2:A3660;A2)
=COUNTIF(A2:A3660;A3)
...
但是,如果我使用此范围并让它自动填充,它会像这样增加块:
=COUNTIF(A2:A3660;A2)
=COUNTIF(A2:A3660;A3)
=COUNTIF(A4:A3662;A4)
=COUNTIF(A4:A3662;A5)
...
我的愿望当然是始终拥有相同的范围(A2:A3660)并且只增加最后一个值(A2,A3,A4,A5,......)。
我该如何解决这个问题?
答案 0 :(得分:1)
试
class DemoVC:UIViewController,UITableViewDelegate,UITableViewDataSource
{
//MARK: -
//MARK: - UITableview delegate
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
return 0
}
func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
...
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath)
{
...
}
//Other codes
}
$符号使公式不增加