Thursday, January 9th, 2014

Format Painter missing in Word on the Mac

It’s actually not missing but it’s not where you expect to find it either.

I use Word on the PC every day and on the Mac only when I am traveling – I love my MacBook Air with its solid state drive – it’s light and an easy traveling companion.

What I don’t like is having to work out all the curly questions you have when things work differently in one operating system to another. Cue today’s issue. I was copying and pasting content from my website into Word on the Mac and I needed to remove the formatting – well I found the Clear Formatting button sort of where I expected it to be on the ribbon.

But when it came to copying a format from one piece of text to another I got stumped. You see the Format Painter isn’t on the ribbon where you expect it to be if you’re used to using Word on the PC. In fact Word on the Mac is a totally different animal.

To find the Format Painter look upwards – up from the ribbon, up from the ribbon tabs and up to what we Windows folk would call the QAT or Quick Access Toolbar. On that toolbar of tools in Word on the Mac is the Format Painter. Click the text to copy the format from, click the Format Painter and then click the text to paint it onto. It’s a simple process BUT you have to find the Format Painter button first!

Hopefully this helps you!

 

Helen Bradley

Monday, July 22nd, 2013

Create your first macro in Excel 2013

Learn how to type a macro in Excel 2007/2010 & 2013. Covers displaying the Developer tab and how to create your Personal Macro Workbook so you can create and save macros. Then how to create a new macro, save and run it.

Transcript:

Hello, I’m Helen Bradley. Welcome to this video tutorial. In this tutorial I’m going to show you how you can create a macro in the Visual Basic Editor in Microsoft Excel. First of all you need to make sure that this Developer tab is visible and it’s not by default. So this is Excel 2007. To make it visible you’ll click the Office button here, choose Excel Options and this is the option you want to enable Show Developer Tab in the Ribbon. With that selected the Developer tab then appears in the Ribbon. Now that’s only for Excel 2007. I’m actually going to close Excel 2007 because I’m going to work in 2010, but I just wanted to show you how you could get the Developer tab in 2007.

Now in 2010 and 2013 it’s a bit different. To get the Developer tab there you’ll choose File and then Options. And what you’re going to do is go to Customize Ribbon because only in 2010 and 2013 can you actually customize the Ribbon. And there’s an option here for Developer. So this the Developer tab and again by default it’s disabled so you want to just select it so that it is enabled and click Ok. Now this entire video was prompted by a user who asked me for a macro that would delete every row in a worksheet if there was nothing in column A.

So I have a worksheet here and I have some rows in which there is nothing at all and what we want to do is to delete them. So the first thing we need to do is to make sure that the Developer tab is visible on the Ribbon and then we’re going to actually create this macro. In fact I’m just going to copy and paste it because I just want to show you the basics of creating a macro. This might be one that you’ve been sent or it might be one you find on the web or whatever.

Now before you can actually create a macro inside the place where it’s supposed to be you have to actually have this one file created. And chances are if you’ve never created a macro before you don’t have the very file that you need. The simplest way to resolve that situation is to first before you do anything else go and click Record Macro. And you’re going to store this macro in what is called the personal macro workbook.

If you don’t have it Microsoft Excel creates it for you so that’s why we’re going to the trouble of recording just anything so that we can get this personal macro workbook created. And once it’s created then in future we’ll be able to store macros in it and these macros will always be available to every single worksheet.

Whenever Excel is opened it opens this file and everything is fine and dandy so I’m just going to click Ok. And I’m just going to type a couple of letters in there, press Enter. That’s a macro. That’s all it does and click Stop Recording. I don’t actually want the macro and I don’t actually want the contents of that cell. All I want is this special file that is called personal.xls. So I’m going to click Macros now and you can see here is the macro that we just created in this workbook personal.xls.

It’s personal.xlsb whatever it is for your particular version of Excel. And this is a file that Excel takes care of opening every time you come and open Excel so these macros are always going to be available. Now I want to add a new macro. And the macro I want to add is called remove rows. That’s just what I called it. So I’m going to type the word removerows. Now macro names have to be one whole word. You can’t use spaces but you can use underscores. I’m just going to type removerows.

And now because I don’t have that macro Excel is offering me the option of creating it. But I want to create this in my personal.xlsb workbook so I want to make sure that I select that first. Macro name personal.xlsb workbook, click Create. And what that does is it automatically opens the Visual Basic Editor for me so I don’t have to do all the work. And it also places me right in the middle of this code area which is exactly where I put my macro code. So I have it in a file so I’m just going to copy and paste it. In fact I’m going to do a little bit of the wrong thing so I can show you the result.

I’ve gone and got my file and I’ve copied the macro code to the clipboard and I’m going to paste it in. And you can see that what I did was I bought in the sub and end sub statements. And you can’t have two sets of sub and end sub statements. So the first thing I’m going to do is get rid of the extra statements. And it appears here that my lines have been cut in pieces so I’m just going to make sure that these comments are back in single lines.

So here is my removerows macro. And this has also got cut in two so let’s just neaten things up a little bit. And this is a macro that removes rows in a worksheet where the cell in column is blank. It doesn’t require you to make a selection before running it. However as Undo doesn’t work after running this macro it’s a good idea to back up your worksheet first. Well, that’s good. And I’m just going to while I’m here clean up this macro that I recorded earlier that I didn’t really want to keep but I just created so that I would get this personal.xlsb workbook.

Now that I’ve finished inside the Visual Basic Editor, I’ve created my macro I’m just going to choose File, Close and return to Microsoft Excel. Now the macro is stored not in this particular file but in this special workbook. I want to test it so the first thing I’ll do is to save my file just in case everything goes haywire. The other thing I’m going to do is just for my own purposes is format these particular rows the ones that I want to get rid of with a color. What I want to do is when I get rid of these rows the very first time I run it I just want to make sure that the macro is behaving correctly.

So if it were to do something funny I’ve marked up in orange exactly what I don’t want to see at the end of this macro. So if it were to do something like this, so let’s just go and do Delete Cells, I don’t want it to delete cells. I want it to delete a whole row so if it were to end up with something like this happening I know that my macro isn’t working. So I’m just setting myself up to check to make sure that everything is working correctly when I do run my macro. And if it works perfectly on this worksheet then I’m just going to assume that it’s going to work perfectly every other time in future.

So here we have our worksheet. Now it’s time to run the macro. Now you don’t have to use the Developer tab to do it although you can. But you can use the View tab. We’re going to Macros and here are our macros and the macros are in personal.xlsb. And the one we want to run is called removerows so I’m just going to click to run it. All the orange highlighting is gone and everything that is left are just rows that have data in column A.

So that’s how you would create a macro yourself if you found it on the web or you downloaded it from somewhere or were given it in the Visual Basic Editor in Excel. Once the personal.xlsb workbook has been created the first time you don’t have to go through that record macro step. That’s only to create that file the very first time. From now on Excel is going to take care of that file. If you’re prompted to save it when you exit Excel, say yes because you do want to save all the data that you’ve created in it. I’m Helen Bradley. Thank you for joining me for this video tutorial. Look out for more of my tutorials on this YouTube channel and visit projectwoman.com for tips, tricks and tutorials on a whole range of Office programs.

Helen Bradley

Wednesday, June 26th, 2013

Word 2010 and 2013 Tip – Create Side by Side Tables

Place tables side by side in a document using text boxes to keep them in place

If you add a table to a text box in Microsoft Word, you can position the text box wherever you want it to be on the screen.

If you need two tables to be placed side by side in your document you can do so by placing each of them inside a text box and then arranging the text boxes side by side.

To do this, create a text box by selecting the Insert tab on the Ribbon, click Text Box and click Draw Text Box. Click and drag to create a text box and then click inside it and create a table by choosing Insert > Table. Repeat the process to create the second table in its text box then drag to position the text boxes side by side.

Helen Bradley

Monday, June 3rd, 2013

Word 2010 and 2013 Tip – AutoNumber Table Rows

Automatically Number Any and All Rows in a Table

To automatically number rows in your table, select the column you wish to number (or the specific cells in the column you wish to number). Now, click the Numbering button on the Home tab on the Ribbon. After the rows are numbered, you can move the rows anywhere and the numbering will readjust automatically.

Helen Bradley

Tuesday, October 2nd, 2012

Trevor’s Quick Word Tip – Disappearing Ribbon

Does the Ribbon in Microsoft Word make your workspace feel cluttered, distracting you from the work at hand? If so, double click any of the tabs to hide the Ribbon or press Ctrl + F1.  When you want the Ribbon back repeat these steps to recover the Ribbon

Helen Bradley

Thursday, April 12th, 2012

Customize the Quick Access toolbar in Word 2010

customize the quick access toolbar

The Quick Access Toolbar or QAT runs across the top left edge of the Word 2007 and 2010 window. It also appears in other ribbon compatible programs like Excel 2007 & 2010, PowerPoint 2007 & 2010.

The QAT is a handy place to put icons that you use all the time. It can be customized through this Quick Access Toolbar option.

Click this icon to show the QAT editing options. Click Show Below the Ribbon to place the Quick Access Toolbar below the ribbon – I think most people will find its current position acceptable but if you want to move it that’s how to place it elsewhere.

Choose More Commands to add more commands to the Ribbon. From the Choose Commands From list you can select commands to view. These include Popular Commands, Commands Not In The Ribbon, in other words commands that are available in Microsoft Word but for which you have no other easy way of accessing, All Commands or Macros. The remainder of the dialog gives you access to the individual tabs in Word so that you can get access to icons listed there.

Some options you may want to add to the Quick Access Toolbar include the Close/Close All Button, Quick Print and I like to add Switch Windows which is available from the All Commands list. Other tools that you use frequently can be added to the Quick Access Toolbar making them instantly accessible.

You should note that you can set the features for all documents or for just an individual document so that you can, for example, set a different toolbar for a specific document. When you choose this option the specific document will get all the tools on the standard quick access toolbar plus those that you’ve added to just its toolbar.

 

Helen Bradley

Thursday, August 13th, 2009

Word 2007 – Sort Words, Paragraphs and Table Cells


Word 2007 finally fixed a huge problem that existed in earlier versions – it looked like there was no way to sort data in a list.

This wasn’t the case – you used the table sort feature but it was far from being self evident.

Now Word 2007 uses the same tool it just puts it in a smart place.

To sort a list or series of words or paragraphs, select the text.

From the Ribbon, click the Home button and click the Sort button in the Paragraph group.

Choose Paragraph to sort on the first word and click Ok to sort the data in order.

If you’re using an earlier version of Word, then visit this post to see how to sort in Word 2003 and earlier:

Sorting a Word list
http://www.projectwoman.com/labels/Table%20Sort.html

Helen Bradley

Tuesday, August 7th, 2007

Where is it? Office 2007 stole your fave command

I get a lot of emails from folk who have spent time agonizing about things missing from the new Office 2007. True, a few of your old favourite commands have probably bitten the dust but some are still there, just not visible.

To see what you can’t see (if that isn’t a totally confusing statement) click the Office button, choose Word Options (or Excel Options if you’re using Excel etc) and then click Customize. This is where you can manage your toolbar. From the Choose Commands From list choose Commands not in the Ribbon. The list below shows all the commands that still function but which you just can’t see. Click any you can’t live without and click Add to add them to the Quick Access toolbar and they’ll be there for you to use.

This is also the first place to look when you are wondering if a certain command is on the ribbon. If you can’t see it, check here, this is a definative list of what still works but isn’t where it is easily accessed.

Helen Bradley

Wednesday, May 2nd, 2007

Hide the Ribbon in Office 2007

Ok, I’m on record, I love the ribbon in Word but on my laptop with its scrunched up screen (in the tradeoff between size and weight, I opt for weight!) the ribbon is sometimes too big.

Not a worry, it’s simplicity itself to hide it. Press Control + F1 and it disappears and press it again and it reappears. You can also have it disappear so it will come back with a single click on any tab name. To do this, double click a tab name and the ribbon disappears. Single click a tab name and it reappears – click again on the tab or in the document, and it disappears. Repeat until you’re tired of the magic! Double click or Control + F1 to go back to how it is.

It’s a neat party trick to play on a co-worker (no! I did not tell you to do that), and a great way to buy back some much needed screen real estate.

Helen Bradley