The Selection Pane

Share

Facebook
Twitter
LinkedIn

New to Excel 2007, unless JP corrects me, is the Picture Selection Pane.

This is a neat little tool which allows quick sorting and editing of the visibility of pictures and other objects on a worksheet. Those other objects includes Charts, Shapes, Word Art, Text Boxes, Pictures and other embedded objects.

Earlier this week on the Chandoo.org/Forums, Ankit asked a question about un-hiding pictures that seemed to disappear from his worksheet.

I responded with a little bit of VBA code which he was able to use to make all his pictures visible.

Sub unhide_pics()
  Set DrwObj = ActiveSheet.DrawingObjects
  For Each Pict In DrwObj
    Pict.Visible = True 'change to False to hide
  Next
End Sub

I later realized that had Ankir been using Excel 2007/10 he could have solved his problem without the need for any code.

How ?

Use the Selection Pane.

Goto a page with an object, hidden or not

Goto the Page Layout, Selection Pane tab.


What Can I Do ?

In the selection pane window you will see a list of objects that are on your worksheet. The list shows visible and non-visible (Hidden) objects.

Visibility

Each Object has a small picture beside it showing either an Eye (Visible) or a Window (see through), this indicates the visible status.


Click on an eye to hide an object,

Click on a blank pane to unhide the object

Depth Order

The location of the objects in the list also shows the position in the Depth Field of the objects. That is Objects at the top of the list are in front of those objects below it in the list.

You can move objects up or down using the re-order buttons which moves objects closer to the front or rear of other objects.

Show All/Hide All

Click on the Show All/Hide All buttons to do exactly that.

Rename Objects

Click on the name of the object and type a new name


Advanced Use

Hold Ctrl and Click on several objects in the selection pane to add them to your selection

The selected objects are highlighted in the selection pane

Right click on the objects to Group/Ungroup them

Grouped Objects are shown in the selection Pane as a group

The group can be hidden/shown or individual members of the group can be hidden/shown

Uses:

Cleanup Web Copy/Paste

If you have ever selected a large amount of text from a web site and pasted it into Excel, you will have inevitably collected several graphical objects along the way, some visible and some hidden

Use the selection Pane to select them all at once and press delete

Change Company Logos

You may have a report which you generate for differing companies

Install all the logos and Hide/Show as required.

Look for Missing Links

I have seen Excel workbooks where people have an external link and they cannot find it.

Links can be attached to Drawing Objects etc and these may be hidden.

The Selection Pane is a quick way to search for those objects without code


Let us know about your object handling problems and how you solved them in the comments below:

Next Week: Are you Trendy? More on Trend Analysis.

Facebook
Twitter
LinkedIn

Share this tip with your colleagues

Excel and Power BI tips - Chandoo.org Newsletter

Get FREE Excel + Power BI Tips

Simple, fun and useful emails, once per week.

Learn & be awesome.

Welcome to Chandoo.org

Thank you so much for visiting. My aim is to make you awesome in Excel & Power BI. I do this by sharing videos, tips, examples and downloads on this website. There are more than 1,000 pages with all things Excel, Power BI, Dashboards & VBA here. Go ahead and spend few minutes to be AWESOME.

Read my storyFREE Excel tips book

Overall I learned a lot and I thought you did a great job of explaining how to do things. This will definitely elevate my reporting in the future.
Rebekah S
Reporting Analyst
Excel formula list - 100+ examples and howto guide for you

From simple to complex, there is a formula for every occasion. Check out the list now.

Calendars, invoices, trackers and much more. All free, fun and fantastic.

Advanced Pivot Table tricks

Power Query, Data model, DAX, Filters, Slicers, Conditional formats and beautiful charts. It's all here.

Still on fence about Power BI? In this getting started guide, learn what is Power BI, how to get it and how to create your first report from scratch.

One Response to “How to compare two Excel sheets using VLOOKUP? [FREE Template]”

  1. Danny says:

    Maybe I missed it, but this method doesn't include data from James that isn't contained in Sara's data.

    I added a new sheet, and named the ranges for Sara and James.

    Maybe something like:
    B2: =SORT(UNIQUE(VSTACK(SaraCust, JamesCust)))
    C2: =XLOOKUP(B2#,SaraCust,SaraPaid,"Missing")
    D2: =XLOOKUP(B2#,JamesCust, JamesPaid,"Missing")
    E2: =IF(ISERROR(C2#+D2#),"Missing",IF(C2#=D2#,"Yes","No"))

    Then we can still do similar conditional formatting. But this will pull in data missing from Sara's sheet as well.

Leave a Reply