我在 Excel 电子表格中有一个表格。我想得到相当于做类似的事情
SELECT col1, COUNT(col1), COUNT(col2)
FROM table
GROUP BY col1
在 SQL 中。我试图使用数据透视表,我可能想多了,但我不习惯在 Excel 中工作,无法弄清楚。
所有帮助表示赞赏。谢谢你。
我在 Excel 电子表格中有一个表格。我想得到相当于做类似的事情
SELECT col1, COUNT(col1), COUNT(col2)
FROM table
GROUP BY col1
在 SQL 中。我试图使用数据透视表,我可能想多了,但我不习惯在 Excel 中工作,无法弄清楚。
所有帮助表示赞赏。谢谢你。
在后台打开 Access 实例。放数据。通过 SQL 查询。
那么在细胞公式中它会是(即)
//Cell Formula
=Count(A1:A50) // Range
=Count(A1, A3, A5) // Specific Cells
// in VBA
=Sheet1.Range("A:A").Cells.SpecialCells(xlCellTypeConstants).Count
// Where "A" is the column and 'SpecialCells(xlCellTypeConstants)' returns non-blank cells
// 如果需要检查 vba 中的特定值:
Dim counter As Integer
counter = 0
For Each c In Sheet1.Range("A1:A100").Cells
If c.Value = "Something" Then
counter = counter + 1
End If
Next
// Then get your value of the counter variable
您可能必须执行嵌套循环才能获得所需的内容。