如何在Excel的單元格中顯示表格或數(shù)據(jù)透視表的名稱?
本文討論的是在Excel的單元格中顯示指定的表或數(shù)據(jù)透視表的名稱。
在具有VBA代碼的單元格中顯示表或數(shù)據(jù)透視表的名稱
在具有VBA代碼的單元格中顯示表或數(shù)據(jù)透視表的名稱
驚人的! 在 Excel 中使用高效的選項(xiàng)卡,如 Chrome、Firefox 和 Safari!
每天節(jié)省50%的時(shí)間,并減少數(shù)千次鼠標(biāo)單擊!
以下VBA代碼可以幫助您在單元格中顯示指定的表或數(shù)據(jù)透視表的名稱。 請執(zhí)行以下操作。
1。 按 其他 + F11 鍵打開 Microsoft Visual Basic應(yīng)用程序 窗口。

2.在 Microsoft Visual Basic應(yīng)用程序 窗口中,單擊 插頁 > 模塊。 然后將下面的VBA代碼復(fù)制到“模塊”窗口中。
VBA代碼:在單元格中顯示表或數(shù)據(jù)透視表的名稱
Function getObjName(rng As Range) As String
‘Updated by Extendoffice 20180420
Dim xTable As ListObject
Dim xPivotTable As PivotTable
Dim xTableName As String
Dim xPtName As String
On Error Resume Next
xTableName = ""
xPtName = ""
Set xTable = rng.Cells(1).ListObject
xTableName = "Table[" & xTable.Name & "]"
If xTable Is Nothing Then
Set xPivotTable = rng.Cells(1).PivotTable
xPtName = "Pivot [" & xPivotTable.Name & "]"
End If
getObjName = xTableName & xPtName
End Function
3. Press the Alt + Q keys to exit the Microsoft Visual Basic for Applications window.
4. Select a blank cell, enter formula =getObjName(A2) into the Formula Bar and then press the Enter key. See screenshot:
Notes:
1. In the formula, A2 is the cell of the table you want to display the name. You can reference any cell of the table range as you need.
2. For displaying pivot table name, please change A2 in the formula to any cell within the pivot table.
Related articles:
How to list all table names in Excel?
How to keep table expandable by inserting table row in a protected worksheet in Excel?
How to reorder position of columns in table in Excel?
How to hide zero value rows in pivot table?
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...
版權(quán)聲明:本文內(nèi)容由網(wǎng)絡(luò)用戶投稿,版權(quán)歸原作者所有,本站不擁有其著作權(quán),亦不承擔(dān)相應(yīng)法律責(zé)任。如果您發(fā)現(xiàn)本站中有涉嫌抄襲或描述失實(shí)的內(nèi)容,請聯(lián)系我們jiasou666@gmail.com 處理,核實(shí)后本網(wǎng)站將在24小時(shí)內(nèi)刪除侵權(quán)內(nèi)容。