Remove that annoying background from your company logo

 

Summary

If you can't include your company logo in a presentation because of its unsightly background, use this PowerPoint trick to make that background disappear.

Events

Social Media World Forum
22 - 23 Sep 2010

Suntec, Singapore

Asia CXO Leadership Summit - Singapore
7 Sep 2010

Marriott Hotel, Singapore

Governmentware 2010
28 - 30 Sep 2010

Suntec, Singapore

The 5th Annual CIO Forum Asia
28 Sep 2010

Singapore

Social Media Marketing and Measurement

6 - 7 Sep 2010
Parkroyal, Singapore

9 - 10 Sep 2010
Regal Hongkong Hotel, Hong Kong

IDC's Asia/Pacific Cloud Computing Conference 2010
31 Aug 2010

Marriott Hotel, Singapore

Microsoft Powerpoint


Remove that annoying background from your company logo


Adding your company logo to a presentation seems like an easy enough task. You probably have a special graphic file that's just the logo--how hard can it be to insert it onto a slide? Inserting it isn't a problem, but getting it to look right might be.

Quite often, the logo shows up with a background, and unless the slide's background matches the logo's background perfectly, it looks awful. (Please don't flame me for the yellow background; the garish yellow makes the example easy to see.)

If your logo is a bitmap file, the solution is easy, but perhaps not well-known.

  1. In Normal view, right-click the logo image and choose Show Picture Toolbar to display the Picture toolbar.

  1. Click the Set Transparent Color tool (the next-to-last button). The pointer will change to resemble the transparency tool.

  1. Simply click the image's background. If you're lucky, the off-white background will just disappear like magic!

If you're using PowerPoint 2007, do the following:

  1. Click the Format tab.
  2. In the Adjust group, choose Set Transparent Color from the Recolor drop-down list.
  3. Click the image's background.

Of course, you can use this feature to remove more than backgrounds. Just click an area and it'll disappear. If you don't like the look, press [Ctrl]+Z. At the very worst, you might have to delete and reinsert the file to start over. This transparency setting works best with bitmap files. For vector files most clipart), you'll need special image editing software.



Microsoft Word


About Word's background printing


Printing can be a quick or laborious task, but either way, it consumes resources. Depending on Word's configuration, it can tie up more than resources--a print job can keep users from working in Word until the print job is complete.

Fortunately, Word supports background printing. In fact, it's the default setting. When background printing is enabled, Word sends a document to disk and from there, to print (via Windows). This configuration allows users to continue working in Word immediately after sending a document to print. On the other hand, when this option is disabled, Word stops everything to print the document, bypassing the quick disk save and sending it straight to Windows.

Enabled or disabled, there's a tradeoff: performance versus accessibility:

  • Enabled, users can work immediately after printing, but long documents can take a long time to print.
  • Disabled, users can't work in Word, but the document prints quickly.

How do you advise your users? Here's a simple list of guidelines for helping users get the best of background printing, most of the time:

  • Unless you have good reason not to, enable background printing for most users. There are exceptions to every rule, but most users will fare better with background printing enabled. Users printing short documents won't notice much difference between enabled and disabled.
  • Disable background printing for the lone user who prints lots of long documents and does little actual work in Word itself. You probably don't have anyone using Word who fits this description.
  • Train users to fend for themselves. If they know how background printing works and how to use it appropriately, they can work more efficiently on their own.
  • When necessary, use VBA to disable background printing temporarily.

Train users
Most users will stick with the default setting and continue to work with background printing enabled. When they need to print a long document quickly, teach them how to disable the feature as follows:

Word 2003

  1. From the Tools menu, choose Options.
  2. Click the Print tab.
  3. Uncheck the Background Printing option in the Printing Options section and click OK.

Word 2007

  1. Click the Office button and then click Word Options.
  2. Choose Advanced from the left pane.
  3. Scroll through the options until you find the Print options.
  4. Uncheck the Print In Background option.
  5. Click OK.

After the document prints, the user simply re-enables the feature. Don't worry that they'll forget. As soon as they print a document and find themselves unable to continue working, they'll remember and reset the option. Remember, an empowered user works more efficiently, and doesn't call you (at least not as often).

Use VBA to control background printing

The above guidelines cover most situations, but occasionally, you might want to take a different course of action. If you have users printing long documents, you can help them out a bit using VBA. Specifically, you can let the document disable and enable background printing. You control the settings via the document itself, and users don't have to be involved at all.

To disable background printing, use the PrintOut method as follows:

ActiveDocument.PrintOut Background:=False

To enable the feature, set the Background property to True as follows:

ActiveDocument.PrintOut Background:=True

Setting the Background property to False has one more benefit. Sometimes, users print a document and then exit Word immediately. Or they execute a macro that prints the document and exits Word. Either way, exiting doesn't always work. Word might display a warning message that exiting Word will cancel the current print job. In this case, add a statement that sets the Background property to False. VBA won't execute the next statement (the statement to exit Word) until the print job is complete.

Of course, you'll have to automate the print process via the interface somehow, instructing the user to print the document using a specific button or command instead of using Word's built-in interface. You might even disable the built-in Print commands when loading this document, to force the issue.



Microsoft Excel


Displaying percentages as a series in an Excel chart


Most of us know how to create a chart in Excel, but it's the chart with a little something extra that often does the best job. For instance, suppose you're charting product favorites by age group and you want to highlight a specific group's preference for each product. You can do so by charting a formula that expresses that preference.

The percentage adds to the story: The percentage of those who prefer a specific project and are adults (the formula in B5 is =B4/(B2+B3+B4, copied to C5 and D5).

The trick to displaying the adult-preference percentage is to treat the value as a series. But first, create the chart as you normally would (in Excel 2003):

  1. Select the data labels and data. In this case, you'd select A1:D5.
  2. Then, click the Chart Wizard on the Standard toolbar.
  3. Choose Bar as the Chart Type, click the Stacked Bar subtype, and click Next.
  4. For this chart, choose Rows as the series source and click Finish.

The resulting chart needs a bit of work. Let's adjust some of the formats to make the chart a bit more readable:

  1. Right-click the X axis (the flavors), choose Format Axis from the resulting context menu, and then click the Font tab. Choose 8 in the Size control and click OK.
  2. Right-click any of the values on the Y axis, choose Format Axis, and click the Font tab. Choose 8 in the Size control and click OK. (Depending on your settings, you might need to choose a smaller or larger font size.)
  3. Right-click the legend, choose Format legend, click the Font tab, and enter 8 as the Font size. Doing so should display the % Adults series, if you can’t see it in the legend.

The next step is to expose the % Adults series, as follows:

  1. Right-click the chart's background and choose Chart Options.
  2. Click the Data Labels tab.
  3. Check Value in the Label Contains section and click OK. Doing so displays all values for all four series, but you want to display only the values for the % Adults series.
  4. You must hide the values for each series individually. Right-click the Children series and choose Format Data Series. (If you get a different context menu, try again. If you can't get the right menu, move a data label from that series to expose the actual series and try again.)

  5. Click the Data Labels tab.
  6. Uncheck the Values option in the Label Contains section and click OK.
  7. Repeats steps 4 through 6 for the Teens and Adults series (but not the % Adults series).
  8. At this point, you're nearly done, but the remaining data labels--the % Adults percentage--probably need to be repositioned. Right-click one of the remaining data labels and choose Format Data Labels.
  9. Click the Alignment tab.
  10. Choose Inside Base in the Label Position section.

  11. If you want, click the Font tab and reduce the size of the data label.
  12. Click OK.

The addition of the % Adults value tells an important story, at just a glance. Visually (see the complete chart above) you can see that the adults make up the larger portion of chocolate lovers, but you can quickly discern that 51 percent of chocolate lovers are adults, 26 percent of strawberry lovers are adults, and 14 percent of vanilla lovers are adults.

The legend continues to display the % Adults series, which is a bit awkward, but not a truly horrible offense. If the color scheme is right, you can display the data labels in a matching color, making the relationship between the legend item and the values obvious. Or display the legend key in the series. Another solution is to just delete the legend.

This technique is a combination of charting the right expression to support the chart's purpose and exploiting a few chart properties to display that supportive information in a meaningful way.

Talkback

Add your opinion

In order to post a comment, you need to be registered. (Sign In or register below)

Post your comment
HP Data Protector delivers high-performance data protection at up to 70% lower TCO.
Tech Vendor: HP
Did you know?
Did you know?

ZDNet Asia Live

RT @RehaAlev: Twitter to record all links users click http://bit.ly/94hGHx

Using Parallel class for simple multithreading http://bit.ly/bZ3hpf

32 minutes ago by kittirak on topsy

need more

1 hour 8 minutes ago by jepsy on Is it too late to introduce 3G in India?

Using Parallel class for simple multithreading: In this programming tutorial about Parallel Exte... http://bit.ly/c0g5Wi - #AsiaToday #News

RT @Colasoft: RT @zdnetasia: 12 most recommended network monitoring tools http://bit.ly/9KWQ96

RT @WilliamLark: Facebook adds new remote log-out security feature: Facebook users who log in from multiple devices will soon have ... http://bit.ly/ai5asr

Facebook adds new remote log-out security feature: Facebook users who log in from multiple devices will soon have ... http://bit.ly/ai5asr

3 hours 37 minutes ago by williamlark on topsy

Samsung: Galaxy Tab has leg up on Apple iPad http://bit.ly/9OPPUy

Samsung: Galaxy Tab has leg up on Apple iPad http://bit.ly/aD9zXt | #Droid #Android

Toshiba recalls 41,000 laptops for overheating: U.S. Consumer Product Safety Commission says 129... http://bit.ly/axqc2a - #AsiaToday #News

RT @zdnetasia: 12 most recommended network monitoring tools http://bit.ly/9KWQ96

Google, AOL renew search deal: Under the arrangement, Google provides search for AOL and the com... http://bit.ly/bif9sl - #AsiaToday #News

Acer comes back down to earth, Dell rises: Fastest-growing PC company of the last few years stum... http://bit.ly/byByP7 - #AsiaToday #News

Securing consumer gadgets in the workplace: By Nick Heath, Silicon.com on September 3, 2010 (2 minutes ago) news a... http://bit.ly/ad12aw

Securing consumer gadgets in the workplace: By Nick Heath, Silicon.com on September 3, 2010 (2 minutes ago) news a... http://bit.ly/97Jth5

5 hours 16 minutes ago by wizmole on topsy

Google, AOL remplacent l'affaire de recherche - ZDNet Asie: Google, AOL remplacent le dealZDNet Asie de re... http://bit.ly/dy9zaw #musique

5 hours 28 minutes ago by lafiliere on topsy

I recommend checking 5pm for a good project management tool. (www.5pmweb.com). It makes the team collaboration easy and is friendly enou...

6 hours 26 minutes ago by Erica on Agile drivers for new project management tools

I am a student researching piracy for my computer course. My mother owns an epublishing company. Ebook piracy is also a huge problem in h...

6 hours 39 minutes ago by tasha6669 on SaaS no silver bullet for piracy

For more information regarding the lawsuit and the patents involved, check out Sunlight Research's upcoming webinar "Will Oracle’s Java...

13 hours 4 minutes ago by Sunlight on Legal woes no impact on Android ecosystem yet

Google search does not seem to be made for 5 years old kids,anyway your child will learn to say and understand the meaning of this senten...

23 hours 18 minutes ago by irajjs on Facing reality from a Google search about Echo of Amboseli

Another project software is http://www.proofhub.com/. I have used it and it is really good. It contains many new features which you can u...

1 day 14 minutes ago by Barry on Check out Project alternatives: Basecamp and QuickBase

But iTunes music does not apply to Asia. We STILL CAN'T BUY music from iTunes!!!

1 day 7 minutes ago by maxxtotal on Study: Music, not apps, rules iTunes

Sadly, asia will probably not get it ...

2 days 10 minutes ago by mingnow on Apple TV to launch with Netflix

I read a great deal of blogs, and I have not come across an article that articulates these points so well.

2 days 38 minutes ago by barbaragabogrecan on Is NBN really needed in Australia?

The project is very much pro India & may be necessary. But I think it is too futuristic for India which lacks even basic information secu...

3 days 41 minutes ago by amit039 on Should India now look forward to unique ID cards?

Hamein Malum Hai Jannat ki Haqiqat Lekin Ghalib, Dil Behelane ko Khayal Achcha Hai As kids and as people who do not want to learn about ...

3 days 40 minutes ago by deepak.sogani on Facing reality from a Google search about Echo of Amboseli

Check out this article on using the Droid X in the Enterprise: http://forum.maas360.com/go/mobileitexpertise/the-x-factor-my-first-week-...

3 days 38 minutes ago by dlima on Five Android apps for enterprise users

I total agree that being married does not automatically make a person a better boss. Neither would I say being single makes you better re...

3 days 57 minutes ago by mingnow on Being married doesn't make one a better boss

A very painful way of getting introduced to death. I remember watching 'haati mera saati' around the same age and weeping for day...

4 days 37 minutes ago by Benno on Facing reality from a Google search about Echo of Amboseli

I have had to good fortune to use all operating Systems (OS) listed in your article, including Solaris. For the most part, I derive the m...

4 days 28 minutes ago by wanderson on 10 differences between Linux and BSD