Home  >  Article  >  Topics  >  What to do if excel name conflict cannot be closed

What to do if excel name conflict cannot be closed

藏色散人
藏色散人Original
2020-08-28 11:12:5428031browse

The solution to excel name conflict that cannot be closed: first open the VB macro editor; then add the code as "Sub ShowAllNames()" and press F5 to run; then delete the code, save it and close the macro editor; finally Just reopen the "Name Manager" and save the Excel file.

What to do if excel name conflict cannot be closed

Recommended: "Excel Tutorial"

Open the VB macro editor (Atl F11 or record a macro- Edit macro (open the editor) and paste the following code in:

Sub ShowAllNames()
For Each n In ThisWorkbook.Names
n.Visible = True
Next
End Sub

F5 to run. After successful operation, you can delete the code, save it, close the macro editor and return to Excel.

Reopen the "Name Manager" and you can see all the names.

If you think it is unnecessary, just delete it directly.

Save the Excel file and the problem is solved.

The above is the detailed content of What to do if excel name conflict cannot be closed. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn