Category Archives: Office 2010

White space (Margins) disappear in Word document

Posted by on May 1st, 2013

Question: I used to have margins or white space appearing at the top of my document, but now my text comes up at the top. How can I get it back?

Answer: The most common reason it happened is due to accidentally double-clicking in the top or bottom edge of your document. To get it back, simply double click at the top or bottom of your document to get it back. Another way to get it back is to go to File > Options > Display and place a check to Show white space between pages in Print Layout view. You can change the default to no white space out of the box by setting the White Space Between Pages In Print Layout View option in the Display options. However, you can still reset it with a simple double-click.

Create OneNote Pages from Excel List

Posted by on February 26th, 2013

Question: I have an Excel spreadsheet with 3000 names that I would like to create folders for on my shared network drive. We need to keep files and other information for these people and would like to have the names stored in folders by As, Bs, etc. . Is there an easy way to do that?

Answer: There may be a procedure to do that, but I think a more efficient way to keep track of names and subsequent information for them would be to create a OneNote2010 notebook on a shared network drive. This is a perfect project to show the powerful capabilities of OneNote.

Create sections of the OneNote notebook with the Letters of the Alphabet and then create pages for each student. Within these pages you can create subpages which can hold files, notes, images, recording, etc. You can create this in just a few minutes by Importing the list from Excel into Outlook 2010 Contacts, and then select the “A” contacts and click OneNote in the ribbon. This will send the Contact information to OneNote pages. Do this for each section. See more detailed steps below:

  1. In your Excel file, make sure your workbook contains only one worksheet with headings at the top. It is best to have headings Name and E-Mail for it to import correctly into Outlook.
  2. Name your data range in Excel and save the file in 2003 (.xls) format.
  3. Go to your Outlook contacts view and and right click on Contacts to create new folder – call it something like “Students”
  4. Click File > Open > Import > Import from another program or file.
  5. Verify that the names imported correctly into your Outlook Contacts.
  6. Create a OneNote Notebook on your shared network drive.
  7. Create sections for the letters of the Alphabet.
  8. Go back to your Outlook contacts and select the names you wish to place in the A section (using Shift or Ctrl to select the names) and click OneNote in the ribbon and place in the appropriate notebook section. Continue this for each section of names. You could also select all Contacts and click OneNote, sending all names at once. Then create new pages for each letter of the alphabet and indent the contact pages by dragging slightly to the right, creating subpages.
  9. You can now add notes, drawings, images, files, Outlook messages, appointments and even recordings into OneNote pages. You can also create lists or tags which you can search on.

Learn more about OneNote 2010 in our basics class coming up 4/22 from 1-3 p.m. which you can sign up for by going to www.unmc.edu/its/training.htm . You can find several other tutorials and resources on OneNote at Microsoft, including:

 

Word Mail Merge from Excel “workaround”

Posted by on February 26th, 2013

Question: I’m having problems using a file from Excel to merge into a Word Letter. I am able to select the Excel file as the data source, but when I select the table nothing displayed and an error said “unable to open the data source.” The Excel file was created by someone who is no longer here, so I don’t know if there was any kind of protection preventing this, but we are able to go in and edit the file.

Answer: This is a mystery. After looking at the file, I noticed there were several blank rows, but those would normally merge as blank records. I tried copying the data to another worksheet within the workbook and saved the file. Then closed the file (the Excel Worksheets needs to be closed to allow the merge) and then selected the new worksheet, and the merge worked fine. I wasn’t able to see any protection on the original worksheet, but copying the data to a new worksheet was a way of working around the problem.

Counting patterns in Excel columns and Tiny comments in Word

Posted by on February 14th, 2013

Today I had a couple of questions that stumped me and relied on my best friends, Microsoft Office Support Community and Google to provide the answers. Thanks to these great resources!

Question 1: I was working on a Word document for my boss and can’t read the tiny comments.

Solution: Somehow the styles for the balloon got changed. To change it, go to your styles (click the diagonal arrow in the styles section) and click the Manage Styles icon in the bottom of the Styles window. Sort Alphabetical and find Balloon Text and click Modify to change to a larger font such as 8 or 10 and click OK. This one was on 1 pt, making it impossible to read. For complete instructions with screen prints, see this link.

Question 2: I need to count a series of patterns in an Excel column containing only 0s and 1s. I’m looking for patterns in a column with many rows where there is a 0 and then a 1 in the next row below it. It doesn’t matter if it is followed by several 1s. I just need to count all of the 0′s followed by at least one 1.

I submitted the question to Microsoft Online Community and got 3 answers within an hour.

Solution 1:

Assuming the data is in column A, this is the formula:

=SUMPRODUCT(($A$1:$A$998=0)*($A$2:$A$999=1))

Solution 2:

I like Jeeped’s solution (solution 1) - just remember that if you use it, the formula itself cannot be in one of the cells in the addresses in it.  In other words if you wanted the total at the end of the group you’ve shown in your question, and assuming that goes from row 2 to 17, your formula (in cell on row 18 in same column) would look something like:

=SUMPRODUCT(($A$2:$A$16=0)*($A$3:$A$17=1))

Just as an option, I’ll give you a User Defined Function (UDF) to do the same thing.  A UDF is a special type of macro that can be used in a worksheet formula just like built-in Excel functions such as SUMPRODUCT().

I called this one CountPairs.  And you would use it on a worksheet like this:

=CountPairs(A2:A17)

assuming your list of 1s and 0s is in column A from row 2 through 17.

Here is a web page that tells how to put the code into a regular code module for use:

http://www.contextures.com/xlvba01.html#Regular

Here is the code for the UDF:

Function CountPairs(listRange As Range) As Long
‘place formula such as
‘ = CountPairs(A2:A16) to get count
‘of zeros followed by a 1 in the group
Dim rowPtr As Long
Dim tempCount As Long

For rowPtr = listRange.Cells(1, 1).Row To _
(listRange(listRange.Cells.Rows.Count, 1).Row – 1)
If Cells(rowPtr, 1) = 0 _
And Cells(rowPtr + 1, 1) = 1 Then
tempCount = tempCount + 1
End If
Next
CountPairs = tempCount
End Function

Email to several people without seeing the entire list

Posted by on February 4th, 2013

Question: How can I send an email to many people without them seeing the entire list of recipients?

Answer: Enter the names or group name in the bcc field. This way each person will only see their his/her name. By default you don’t see bcc in an Outlook message, but you can include it by selecting the Options tab and click BCC. This will enable that field to be seen on all new messages.