如何汇总一列中的单元格值,直到到达空白单元格?

网友投稿 171 2024-01-20

如何汇总一列中的单元格值,直到到达空白单元格?

现在,如果您有一个由一些空白单元格填充的数字列表,则需要对上下两个数字求和,直到此列表中的空白单元格得到以下结果。 您有快速或简便的方法来解决Excel中的这项工作吗?

总和以上的单元格值,直到空白单元格

总和以下的单元格值,直到空白单元格

将以下单元格值求和,直到具有数组公式的空白单元格为止

汇总以上的单元格值,直到使用VBA代码的空白单元格为止

将以下单元格值求和,直到具有数组公式的空白单元格为止

要汇总下面的单元格值直至为空白,这是一个数组公式,请执行以下操作:

1。 在数字列旁边的空白单元格中输入此公式, E1,例如。

如何汇总一列中的单元格值,直到到达空白单元格?

=IF(D1="",SUM(D1:INDEX(D1:$D,MATCH(TRUE,(D2:$D=""),0))),"") (D1, D2 是您列中的前两个单元格, D17 是数字列中的最后一个空白单元格)。

2。 然后按 Ctrl + Shift + Enter 键,然后将填充手柄向下拖动到您要在下面对数字求和的单元格,直到空白为止,请参见屏幕截图:

汇总以上的单元格值,直到使用VBA代码的空白单元格为止

如果您需要对以上所有单元格值求和,直到出现空白单元格,则以下VBA代码可能会对您有所帮助。

1。 按住 ALT + F11 键打开 Microsoft Visual Basic应用程序 窗口。

2。 点击 插页 > 模块,然后将以下代码粘贴到 模块 窗口。

VBA代码:将以上所有单元格值求和,直到空白:

Sub InsertTotals() Updateby Extendoffice Dim xRg As Range Dim i, j, StartRow, StartCol As Integer Dim xTxt As String On Error Resume Next xTxt = ActiveWindow.RangeSelection.AddressLocal Set xRg = Application.InputBox("please select the cells:", "Kutools for Excel", xTxt, , , , , 8) If xRg Is Nothing Then Exit Sub StartRow = xRg.Row StartCol = xRg.Column For i = StartCol To xRg.Columns.Count + StartCol - 1 For j = xRg.Row To xRg.Rows.Count + StartRow - 1 If Cells(j, i) = "" Then Cells(j, i).Formula = "=SUM(" & Cells(StartRow, i).Address & ":" & Cells(j - 1, i).Address & ")" StartRow = j + 1 End If Next StartRow = xRg.Row Next End Sub
Copy
3. Then press F5 key to run this code, and a prompt box is popped out to remind you selecting the range of cells that you want to sum cells above until blank cells, see screenshot: 4. Then click OK button, all cell values above blank cells have been added up as following screenshot shown: Best Office Productivity Tools Transform Hours into Minutes with Kutools for Excel! Ready to supercharge your Excel tasks? Harness the power of Kutools for Excel - your ultimate time-saving tool. Streamline intricate tasks and glide through your data like a pro. Experience Excel at lightning speed! Why You Need Kutools for Excel 🛠️ Over 300 Powerful Features: Kutools is packed with more than 300 advanced features, simplifying your work in over 1500 scenarios. 📈 Superior Data Processing: Merge cells, remove duplicates, and perform advanced data conversions – all without breaking a sweat! ⏱️ Efficient Batch Operations: Why put in extra effort when you can work smart? Import, export, combine, and tweak data in bulk with ease. 📊 Customizable Charts and Reports: Access a broad variety of additional charts and generate insightful reports that tell a story. 🗄️ Powerful Navigation Pane: Gain an advantage with the robust Column Manager, Worksheet Manager, and Custom Favorites. 📝 Seven Types of Drop-down Lists: Make data entry a breeze with drop-down lists of various features and types. 🎓 User-Friendly: A breeze for beginners and a powerful tool for experts. Download Now and Soar Through Time with Excel! Read More... Free Download... Purchase... Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project. Open and create multiple documents in new tabs of the same window, rather than in new windows. Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day! Read More... Free Download... Purchase...

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:如何在Excel中基于列和行条件求和?
下一篇:如何在Excel中区分大小写的单元格值求和?
相关文章