This text is replaced by the Flash movie.
 

Posts Tagged ‘ Excel ’

By Chris Grover
April 18, 2011


SAN FRANCISCO – One of the handiest things you can do with Visual Basic for Applications (VBA) in Office 2011 is to share data between two different Office apps. For example, let’s say you want to embed data from Excel in a sales report you’re writing in Word. VBA is the tool you’ll want to use to make that happen.

More specifically, in this example VBA could automatically: identify the current month based on some text in the Word document; find the sales data for that month within the Excel spreadsheet; and paste that data into your Word document. Even if you don’t need to reproduce this specific project, the scripts it uses are great examples of what VBA can do without a lot of work or expertise on your part.

Find a word in Word

VBA has several tools for finding text strings in Word documents. In this example, suppose the first line in your sales reports will always be Sales Report for June or Sales Report for July–the fourth word of the report is always the name of the month. Here are two lines of VBA code that will extract that fourth word:

Dim Month As String
Month = ActiveDocument.Words(4).Text

The first line creates a string variable named Month. The second line finds the fourth word in the document and assigns its value to that variable. If the first line in your document is Sales Report for June, then the string stored in the Month variable will be June.

Fetch the data

The next thing to do is get the data from Excel, based on the month string in the Word document. VBA’s Select Case statement is perfect for this; it lets you say, in effect, “In case the month is June, do this. In case it’s July, do that.” The basic structure would look like this:

Select Case Month
Case Is =”June”
Go get June data from Excel
Case Is =”July”
Go get July data from Excel
End Select

There’s one potential gotcha here: If the word you’re seeking is in the middle of a sentence and so has a following space, you need to include that space in the Case Is string.

Now you need to identify and access the Excel workbook that has your data. That takes only one line:

Set xlSheet = GetObject(“Macintosh_ HD:Users:chris:Documents:Monthly Sales Report.xlsx”)

The text inside the quotes inside the parentheses is the full path to the file. The GetObject() method doesn’t care whether the Excel sheet is open or closed; however, if it’s closed when you run this script and it contains macros, you’ll get a dialog box asking you if you want to enable them. You can choose to either enable or disable those macros, and your macro will still do its stuff.

Home in on the Range

Now you need to specify which part of the Excel sheet you want to use. Let’s say the data you want inside Monthly Sales Report.xlsx is in a worksheet (i.e. tab) named Sales and it looks like this:

The best way to succinctly identify a range of cells in Excel is to give that range a name. For example, you could select all four cells in the Feb column and then type the name Feb in Excel’s name box, at the far left of the formula bar. (The name must have no spaces in it.)

Doing this for each month in the Monthly Sales Report worksheet gives you an easy way to identify and copy the data for the report; you can access the named range for a statement like this:

xlSheet.Worksheet(“sales”).Range(“Jan”)

Moving from left to right in this statement: xlSheet creates an object that points to the Excel document, Worksheet(“sales”) refers to the sales tab in the Excel workbook and Range(“Jan”) refers to the named range for January.

The Range object has a handy method–Copy–that you can tack on to the end of that reference: xlSheet.Worksheets(“sales”).Range(“Jan”).Copy. The method copies your data to the clipboard so you can paste it into the Word report. There are certainly other ways to move data from one document to another using VBA, but Copy and Paste may be the easiest.

To do that pasting in Word, you can use the Selection object: it refers to selected text in the document or, if nothing is selected, to the insertion point. That means you can paste the contents of the clipboard into your report at the insertion point with Selection.Paste. The Paste method pastes the Excel cells into your Word report as cells in a table. If you’d only copied the contents of a single cell, it would paste that into your document as text.

Put it all together

When you combine those individual lines, the subroutine looks like this:

Sub GetMonthlySalesData()
Dim Month As String
Month = ActiveDocument.Words(4).Text
Set xlSheet = GetObject(“Macintosh_HD:Users:chris:Documents:Monthly Sales Report.xlsx”)
Select Case Month
Case Is = “January”
xlSheet.Worksheets(“Sales”).Range(“Jan”).Copy
Case Is = “February”
xlSheet.Worksheets(“Sales”).Range(“Feb”).Copy
Case Is = “March”
xlSheet.Worksheets(“Sales”).Range(“Mar”).Copy
End Select
Selection.Paste
End Sub

(You can repeat those Case Is statements for the other months of the year.)

To create this macro yourself, in Word, go to Tools -> Macro -> Macros. In the subsequent Macros window, give the macro a name (such as “Insert Monthly Sales Data”) and click Create. VBA automatically provides the first and last statement for a subroutine and places your cursor in between, ready to type (or paste what you’ve copied). When you’re done, choose Word -> Close to close the macro editor and return to Word.

To run this script, you can once again open Tools -> Macro -> Macros, select Insert Monthly Sales Data and click on Run. Or you can add the macro to a toolbar or menu by choosing View -> Toolbars -> Customize Toolbars and Menus.

  • Squidoo
  • Multiply
  • Facebook
  • Delicious
  • Digg
  • StumbleUpon
  • Twitter
  • TechNet
  • Technorati Favorites
  • MySpace
  • Share/Save/Bookmark
By Gregg Keizer
January 27, 2011

FRAMINGHAM – Four months after it debuted Office for Mac 2001, Microsoft on Tuesday launched the first free trial of the application suite.

The trial version of Office for Mac Home and Business 2011 includes fully-functional versions of Word, Excel, PowerPoint and Outlook, the suite’s word processor, spreadsheet, presentation manager and e-mail client.

Users can run the trial edition for 30 days.

Microsoft has used try-before-you-buy for its Mac Office before; two years ago it offered a 30-day trial for Office for Mac 2008.

However, Microsoft lets Mac OS X users run Office through its paces only half as long as it does Windows customers. The consumer and enterprise trial editions of Office 2010 , which requires Windows XP, Vista or Windows 7, are valid for 60 days.

When the month-long trial of Office for Mac expires, customers must purchase a product activation key by buying a boxed copy of the suite or obtaining a key via online purchase.

The latter will be less expensive.

Amazon.com, for example, sells the single-license Office for Mac Home and Students 2011 for $99.99, $20 off Microsoft’s price, and the three-license edition for $124.25, a $25.74 discount.

The more expensive Home and Business 2011 — the only version that includes Outlook — runs $174.99 for a single license, $228.43 for a two-license pack on Amazon, a savings of $25 and $51.56, respectively.

Alternatives to Microsoft’s suite include the for-free OpenOffice.org and the just-released LibreOffice , as well as Apple’s own iWork bundle.

iWork, which costs $79 but costs $66.55 on Amazon.com, is also the only suite of the four that can be purchased on Apple’s Mac App Store, the iPhone e-mart doppelganger that opened earlier this month . In the Mac App Store, Apple sells the three iWork applications — Pages, Numbers and Keynote — for $19.99 each. Mac App Store software can be installed on up to five personal machines.

Last year, when Apple first announced the Mac App Store, Microsoft said only that its Mac group was “working to understand the impact of the new app store,” but would not commit to trying that distribution channel for Office.

The 890MB Office for Mac trial can be downloaded from Microsoft’s Web site after providing a name and e-mail address.

Also this week, Microsoft’s development team dodged customer questions about whether they would add OneNote to Office for Mac.

Last week, Microsoft released an iPhone version of OneNote . The app, however, is of little use to Mac owners, who lack a desktop version for creating notebooks – something impossible on the iPhone — or synchronizing notes. Instead, they must use the Web-based OneNote.

“No, we don’t have any updates outside of the new [Office for Mac] 2011 suite which includes Word, PowerPoint, Excel and Outlook,” the Microsoft Mac team said on Twitter in response to questions about a possible OneNote on the Mac.

  • Squidoo
  • Multiply
  • Facebook
  • Delicious
  • Digg
  • StumbleUpon
  • Twitter
  • TechNet
  • Technorati Favorites
  • MySpace
  • Share/Save/Bookmark

Make a List of Files

By on November 8, 2010

By Lincoln Spector
November 8, 2010

SAN FRANCISCO – Daves99 asked the Office & Business Software forum how to insert file names into a worksheet or document.

If you want to copy one or two file names, select the file, press F2 to edit the file name, CTRL-a to select all the text, CTRL-c to copy it to the clipboard, and ESC to stop editing the file name. You can then paste the file name wherever you want it.

To grab the names of all the files in a folder, start by launching a command line window at that folder. Here’s how:

If you’re using XP, select Start, All Programs, Accessories, Command Prompt. At the prompt, type cd and the path to the folder you want printed. In typing the path, you can abbreviate “C:\Documents and Settings\logon (where logon is the name you log on with) to %userprofile%. In other words, instead of “C:\Documents and Settings\Dave\My Documents,” simply type “%userprofile%\my documents”.

This is easier with Vista and Windows 7. Navigate Windows Explorer to the folder above one you want. In the right pane, hold down SHIFT as you right-click the folder you want to copy from and select Open Command Window Here.

Once you’re at the right location, type dir /b > dir.txt and press ENTER. (If you want file details as well as names, skip the /b part.) This creates a text file, dir.txt, with your directory listing.

You can load a .txt file into Word or Excel. Or you can double-click it to load it into Notepad, where you can copy it’s contents and paste them into just about any program.

  • Squidoo
  • Multiply
  • Facebook
  • Delicious
  • Digg
  • StumbleUpon
  • Twitter
  • TechNet
  • Technorati Favorites
  • MySpace
  • Share/Save/Bookmark

By Jeff Bertolucci
April 29, 2010

mso2010SAN FRANCISCO – Sometimes it’s lonely in IT. Your organization used to upgrade all the time–well, at least at regular intervals–but now it’s a rare occurrence. Technology has moved on, but you’re stuck in the 2000s, running Windows XP and maybe even Microsoft Office 2003. Redmond feels your pain, and it’s taking a road trip to ignite change, upgrade the nation’s Windows desktops and servers, and maybe sell some software in the process.

The Get On The Bus Tour is a 10-city excursion that runs from May 21 to June 4. Starting in Montreal, it’ll proceed down the U.S. East Coast on its way toward Microsoft’s Tech-Ed 2010 show, which starts June 7 in New Orleans. The event will preach the Windows 7 gospel to IT types still mired in the Windows XP-era. Attendees will receive a heavy dose of Office 2010 propaganda too. Microsoft’s latest productivity suite is slated to ship in June, and the Bus Tour is strategically timed to coincide with Office’s official launch.
All Aboard

Bus Tour sessions will focus on the numerous upgrades in security, performance, and end-user training that come with Windows 7 and Office 2010. Given the successful launch of Windows 7, which has benefitted from a recent surge in PC sales, Microsoft’s biggest Tour challenge may be to convince enterprise users that Office 2010 is worth an upgrade.

Why? Because productivity suites are a mature market. Office’s core apps–Word, Excel, and PowerPoint–may learn a few new tricks with each upgrade, but dramatic improvements are hard to come by. And Microsoft faces an up-and-coming challenger in Google Docs, a cloud-based suite that offers some impressive collaboration tools, even though it can’t match Office’s powerful and time-tested set of features.

Microsoft’s giving away 50 copies of Windows 7 Ultimate for the first 50 groupies, er, attendees at every stop.

  • Squidoo
  • Multiply
  • Facebook
  • Delicious
  • Digg
  • StumbleUpon
  • Twitter
  • TechNet
  • Technorati Favorites
  • MySpace
  • Share/Save/Bookmark

By Ian Paul
March 10, 2010

microsoft-office-2010-beta-leaks-0SAN FRANCISCO – Thinking about purchasing Microsoft Office, but you want to wait until Office 2010 comes out of beta? Don’t bother; just pick up a copy of Office 2007 between now and September 30, and you’ll be eligible to get a free upgrade to Office 2010, thanks to Microsoft’s Technology Guarantee Program.

Microsoft apparently reconsidered its upgrade policy, after announcing in January that upgrade editions would not be offered for Office 2010. The Technology Guarantee Program has some restrictions, however, so here’s the breakdown of everything you need to know to get your free upgrade.

Who is eligible for the Tech Guarantee?

To be eligible you have to purchase the complete Microsoft Office 2007 or single programs from the productivity suite between now and September 30, 2010. Purchases must be for a new copy of Office 2007 bought from Microsoft or an authorized reseller, and can be standalone purchases or bundled with the purchase of a new PC.

Who is not eligible?

This is a promotional offer for home users only. You are not eligible if you have Office 2007 through a volume license (typically business owners with five computers or more); promotional or not-for-resale copies; or bought Office 2007 through the Home Use Rights or Student Select programs. Students, however, are advised to check with their retailer as you may be eligible for an Office 2010 upgrade through that store.

I bought a copy of Office 2007 on eBay. Does it qualify?

No. Microsoft says, “eBay sellers or sellers reselling used product are not authorized retailers,” and therefore products purchased this way are not eligible for the Tech Guarantee.

What are the deadlines?

You have to purchase and activate your copy of Office 2007 by September 30, 2010 to be eligible for the upgrade. You also have to request your Office 2010 Tech Guarantee upgrade by October 31, 2010.

What are the Office 2010 Tech Guarantee limitations?

This is a straight up trade. You only get one Office 2010 suite for every corresponding Office 2007 product. However, some versions of Office 2010 have added new programs, such as OneNote, that weren’t a part of the corresponding 2007 suite. you can see complete details below.

Also, you can only get 25 Tech Guarantee upgrades per person. Microsoft has this restriction to encourage users with larger needs to sign up for volume licensing deals.

There are no refunds for Office 2010 software ordered through the Tech Guarantee program.

What do I need?

When it comes time to redeem your Office 2010 upgrade you will need to know the date of purchase for your copy of Office 2007, your Office 2007 25-character Product ID and a Windows Live account (if you don’t have a Windows Live ID you will be prompted to create one). Microsoft also advises you to hold onto your receipt as proof of purchase for Office 2007, since Microsoft may ask for information from your sales bill.

Why do I need a Windows Live ID?

Microsoft says it will be storing your Office 2010 Product Key through your Windows Live ID in case you need to download Office 2010 a second time.

How do I get my Office 2010 Upgrade?

You can download Office 2010 as soon as it’s commercially available in June. Make sure you’ve activated your copy of Office 2007, and then visit Microsoft’s Office 2010 Technology Guarantee Website to download the upgrade. You can also request a DVD for a fee if you prefer not to install your upgrade through the Internet. Microsoft hasn’t said how much it will cost to get the upgrade DVD.

Make sure you sign up for an e-mail reminder here (click on “Sign up for a reminder” button) so you won’t miss out on the Office 2010 deal.

What version of Office 2010 do I get for my copy of Office 2007?

You get the corresponding version of Office 2010 to your Office 2007 suite. Home and Student 2007 users get Home and Student 2010 . Office 2007 Standard and Basic users will get Home and Business 2010. Small Business, Professional and Ultimate users get Office Professional 2010.

Check out the included chart, to see a complete list of Office 2007 to 2010 upgrades.

Which programs are in each version of the Office 2010 suite?

Microsoft Office Professional 2010: Word, Excel, PowerPoint, OneNote, Outlook, Access and Publisher.

Microsoft Office Home and Business 2010: Word, Excel, PowerPoint, OneNote and Outlook.

Microsoft Office Home and Student 2010: Word, Excel, PowerPoint and OneNote.

All suites include the 2010 version of each program.

  • Squidoo
  • Multiply
  • Facebook
  • Delicious
  • Digg
  • StumbleUpon
  • Twitter
  • TechNet
  • Technorati Favorites
  • MySpace
  • Share/Save/Bookmark

By Bill Snyder
February 4, 2009

SAN FRANCISCO – Apple has made a bone-head play that damages the iPad’s potential for business. But, Microsoft, believe it or not, could come to the rescue. Here’s why:

Apple put iWork–not a great tool to begin with–on the iPad. It’s better than nothing, but while iWork can read Microsoft Office formats, it can’t be set to save DOC files by default. What a mistake. While Apple’s home and student customers may be fine with this annoying limitation, business users can’t be endlessly exporting documents to share with colleagues and customers. Unless Apple makes this important change to iWork on the iPad, the forthcoming tablet will be a good device to view written content, but will fall flat when it comes to creating it.

But suppose Microsoft (hold the boos, please) decided there was money to be made here, and created a version of Office for the tablet? Given the relative lack of storage and so on, iPad Office couldn’t be full-featured, but since most of us only use a fraction of Office’s capabilities, that wouldn’t be a show stopper. In fact, we’d have a device that would be useful for small business, and would probably cut deeply into sales of netbooks.

Apple has some additional work to do as well. If the iPad is to become the super-light computing device of choice, it has to support a full-featured browser, and that means supporting Flash. Whether Apple likes it or not, Flash is ubiquitous, and going to a Web site and getting that annoying error message and chunk of blank screen is a bummer.

Google Docs and ZOHO: Online But Not Offline

Am I serious about Microsoft stepping in? Yes, it would be a great idea, and it would make money for Microsoft. But I’d be surprised if Ballmer & Co. had the imagination to make that move. So, I don’t expect it to happen, at least not immediately.

But there are alternatives, albeit limited, you can likely use as soon as the iPad hits the stores.

Google Docs would probably run fairly well on the iPad, but there are two caveats. The first has to do with screen real estate, the second with Google Gears.

When the iPad is in the editing or writing mode, a virtual keyboard pops up, making it hard to see the tools you need to write and edit a document. You might be able to work around this issue, but it would certainly slow you down.

More serious, I think, is the lack of support for Google Gears, which is necessary to run Google docs offline. Without that capability, there’s no way to work on documents on an airplane, for example, which is a mighty big downside. When Google and the somewhat similar ZOHO are used offline, they can later be synched with the cloud versions, ensuring that you have the current versions of your documents. (Thanks to Harry McCracken of Technologizer for mentioning these points to me.)

ZOHO also needs Google gears to work offline. However, since the Safari browser already supports parts of the developing HTML 5 standard, it shouldn’t be too long until ZOHO, and likely Google, will work offline on the iPad, says Raju Vegesna, ZOHO’s chief evangelist.
HTML 5 is expected to reduce or even eliminate the need for the many of the plugins needed today by browsers. Indeed, HTML 5, which is strongly backed by Apple, should ultimately make the Flash-support issue disappear, Vegesna says. But how long that will take is unclear.

QuickOffice and Roambi Could Help

Then there’s QuickOffice, a nifty little app that runs on the iPhone and a number of its competitors. It gives basic editing capabilities to use with Word and Excel documents, and allows you to view (but not edit) PowerPoints.

Clearly, that’s not the way you want to work all the time, but I find QuickOffice helpful even when used on the small iPhone screen. It should be quite a bit better after the company tweaks its app to take advantage of the comparatively huge iPad. That should happen by the time the tablet reaches consumers, the company told me on Monday.

Roambi produces colorful charts and graphs from your spreadsheets and business intelligence reports, making complex data readable on the small iPhone screen, so it should work on the iPad. The processing occurs on Roambi’s secure server. Like QuickOffice, it is available from the iTunes app store.

  • Squidoo
  • Multiply
  • Facebook
  • Delicious
  • Digg
  • StumbleUpon
  • Twitter
  • TechNet
  • Technorati Favorites
  • MySpace
  • Share/Save/Bookmark

Microsoft Office 2010 Beta

By on November 19, 2009

By Yardena Arar
November 19, 2009

Word 2010
In the venerable word processor, OpenType typography takes the spotlight in an Advanced font pane that supports new font-manipulation options, such as the ability to add ligatures and to choose from several style sets. For more-adventurous designers, a new Text Effects pane lets you apply artistic effects (fills, outlines, and the like) to any text–and still edit the text afterward, which you can’t do with the Word Art in previous versions. (These features also appear in Publisher 2010.)

Searching documents becomes easier with an upgraded Navigation bar that appears on the left when you initiate a search. Results from keyword searches appear highlighted in the main screen (a nicer experience than clicking Next to jump from location to location).

Excel 2010
Microsoft continues to expand and refine the visualization tools in its popular spreadsheet application. The biggest innovation is a feature called Sparklines that lets you create miniature charts within a single cell, a way to instantly show multiple trends across several contiguous data sets. For sophisticated users, PivotTables and PivotCharts allow you to create highly customizable tables and charts from existing data sets with a few mouse clicks. While PivotCharts aren’t new to Excel, the ability to create filters on the fly is.

PowerPoint 2010
If you’re giving a presentation to an army of laptop users, wouldn’t it be nice if your presentation could appear–while still under your control–on the laptop displays of your audience (or, perhaps, on desktops in the room)? PowerPoint Broadcast Service, one of the more impressive PowerPoint innovations, lets you accomplish this with a minimum of fuss and nothing to install. Simply click on the Broadcast Slide Show button in the Slide Show ribbon, and PowerPoint uploads your presentation to Microsoft’s free service and creates a link for distribution (via e-mail or copying) to your audience members. They then click on the link and see in their browser the same slideshow view that you do–with you driving.

Embedding video in a presentation requires only a click or two, whether you’re drawing from your own library or a site such as YouTube. Presentations using a Web video will warn you about the necessity of a live Internet connection; if you use your own video, PowerPoint permits you to edit it down to a desired length, add fade-ins and fade-outs, and otherwise perform minor editing tasks before packing it up with the presentation.

As usual, PowerPoint jocks also get assorted new transitions to play with. My faves include Ferris Wheel, Shred, and Vortex.

OneNote 2010
OneNote, Microsoft’s note-taking application, has acquired new powers in Office 2010, primarily through the addition of conduits that relay data from (or otherwise link it to) other applications. Among other things, you can send documents to OneNote using Office’s print function, which presents OneNote as an alternative to hardware printers, PDF creators, and the like. If you choose that option, a dialog box appears showing your OneNote file structure, so you can place the content in the right location.

You can also take notes in OneNote while working in Word, in PowerPoint, or on the Web. Clicking Linked Notes associates what you’ve written in OneNote to the location in the source document. Internet Explorer 8 has a similar feature, OneNote Linked Notes, under Tools (near the option to e-mail a page to OneNote).

Outlook 2010
Microsoft’s personal information manager receives a ribbon that fans of that type of interface will like and detractors won’t. Several additional tweaks (support for transcription of voicemail, for example) depend on use of Microsoft Exchange and/or Communicator, but everyone can benefit from other new features such as a calendar preview (to check for conflicts when receiving invitations).

More-dramatic changes are in Business Contact Manager, with assorted features designed to manage not only customers but also projects. Potentially the biggest news is Outlook Social Connector, a feature that’s supposed to let you follow status updates from third-party social networks that create feeds using Microsoft APIs. The feeds will appear on the e-mail reading screen.

Access 2010
Microsoft continues to fight the good fight to make its database app more, well, accessible. In addition to new templates to help you get started, Access now offers Application Parts and Quick Start features to help you create database forms by picking and choosing the fields and features you need.

And while it isn’t listed with other Office Web Apps, Access now lets you create a Web database, either from scratch or by importing an existing one. This feature, however, depends on SharePoint support.

Page 3 of 3
<< PREVIOUS
  • Squidoo
  • Multiply
  • Facebook
  • Delicious
  • Digg
  • StumbleUpon
  • Twitter
  • TechNet
  • Technorati Favorites
  • MySpace
  • Share/Save/Bookmark

Microsoft Office 2010 Beta

By on November 19, 2009

By Yardena Arar
November 19, 2009

Web Applications
The Office Web Apps collection, Microsoft’s eagerly awaited answer to Google Docs, Zoho, and other Web-based productivity tools, is still a work in progress–not surprising since the current apps are prominently labeled as technical previews. Microsoft says that all of them will be finalized and available–to consumers via SkyDrive (Microsoft’s free online file storage service) and to businesses via SharePoint 2010 server software–when Office 2010 ships in the first half of 2010.

However, judging from the preview versions I tried through a SharePoint site that Microsoft set up for reviewers (and through the technical beta program on SkyDrive), they’re no match for the competition. For example, Excel can’t create charts, Word has no support for revision mode, and the slide-creation tools in PowerPoint pale next to the wealth of choices in Zoho Show.

SharePoint’s interface for document sharing isn’t particularly intuitive: You can’t create new documents on the Web (although Microsoft says eventually you’ll be able to)–instead you must upload them from desktop apps. And regardless of location (SharePoint or Windows Live), Office Web Apps will work only with documents in Microsoft’s XML file formats (.docx, .xlsx, and so on). But in my tests, at least, Office Web Apps generally delivered on fidelity, meaning that what you see online is what you get on the desktop and vice versa, which isn’t always the case with other Web apps that support the Office formats.

Though all Windows Live users will have access to Office Web Apps, the offerings’ lack of features suggests that Microsoft isn’t trying to create a Web-based productivity ecosystem so much as it is attempting to give customers a Microsoft option for basic editing when they don’t have access to the desktop software.

Starter Edition
Other news relates to how Office 2010 will be delivered on new PCs. Instead of the free limited-period trial commonly available now, Microsoft will make a free, ad-supported Office Starter Edition available to PC manufacturers (this will replace Microsoft’s low-end Works suite, too).

But it’s a stripped-down freebie, consisting of basic versions of Word and Excel that each lack three of the seven tabbed main-menu items in the full versions. In Starter, Word won’t have the Reference, Review, and View tabs; Excel will omit Reference, Review, and Data. Both apps will have a taskbar on the right side containing a small ad toward the bottom for the full versions of Office.

More annoyingly, because the Starter apps don’t support revision mode, you won’t be able to accept, reject, or even delete revisions in documents created in the full versions of Office, which renders Starter Edition useless for any sort of collaboration.

Available Packages
Microsoft is offering the 64-bit version of Office alongside the 32-bit version; you can make your choice during installation. The additional addressable memory that 64-bit PCs and apps support will primarily benefit people who work with huge spreadsheets.

Generally we liked the innovations of Office 2007 (although many other people did not). In this new version, Microsoft has made a lot of usability and design improvements that individually may not bowl anyone over, but as a package–especially as the Web apps mature–are solid and welcome. No pricing has been revealed for the editions announced earlier this year: Office Home and Student (Word, Excel, PowerPoint, and OneNote), Office Home and Business (which adds Outlook), Office Professional (which adds Access and Publisher on top of the rest), and the two volume-licensing editions, Office Standard (Word, Excel, PowerPoint, Outlook, OneNote, and Publisher) and Office Professional Plus (which builds on Standard by adding Business Contact Manager CRM features to Outlook, as well as Access, InfoPath, Communicator, SharePoint Workspace, and other enterprise-specific extras).

If Microsoft doesn’t make the cost of upgrading from 2007 prohibitive, I’d be inclined to move up to this new Office.

Page 2 of 3
<< PREVIOUS
NEXT >>
  • Squidoo
  • Multiply
  • Facebook
  • Delicious
  • Digg
  • StumbleUpon
  • Twitter
  • TechNet
  • Technorati Favorites
  • MySpace
  • Share/Save/Bookmark

Microsoft Office 2010 Beta

By on November 19, 2009

November 19, 2009

Microsoft Office 2010: An Intriguing Beta
By Yardena Arar

Microsoft Office 2010 Beta
www.microsoft.com

With the release of the Office 2010 beta, the general public finally gets to check out how Microsoft plans to deliver on its promises for the next edition of its flagship productivity suite–namely, close integration with lightweight Web versions of core apps (Excel and PowerPoint Web are the first to debut for consumers via Windows Live, with Word and OneNote available only in the business-oriented SharePoint 2010 server beta), better multimedia support, a subtle interface refresh, and a slew of features designed to make document creation and sharing easier. But there’s some news too, most notably support within Outlook for tracking feeds from social networks.

Suitewide, the most immediately apparent change is the departure of the round Office button that brought up commands for saving and printing documents as well as for changing application-specific settings. Instead, Microsoft returns to a familiar menu convention: a File tab that brings up a full screen of commands and information. Microsoft calls this screen the Backstage View.

The left navigation bar in Backstage View holds many of the commands, but most of the real estate is devoted to big panes filled with document-specific items such as editing permissions, links to autosaved versions, file size, and even a thumbnail. (Businesses can customize Backstage View to integrate their workflow processes.) It’s a nice idea in many ways–the ability to return to previous unsaved versions is especially good–but it can also be a bit disconcerting since you completely lose sight of the original document (except for the tiny thumbnail).

One of the cooler suitewide tweaks affects a simple task that most people perform every day: cutting and pasting text. Having observed that in many instances users immediately undo their paste, Microsoft engineers have added a paste-preview feature that lets you see the results before you commit (similar to the mouse-over previews of font changes and other edits available in the ribbon). You even get to choose between previews that apply different formatting options, either maintaining source formatting, merging with destination formatting, or removing all formatting.

Improved picture-editing tools allow you to preview and apply cropping (and many new adjustments and effects) on the fly as you insert images into Office documents.

The ribbon interface introduced in the key Office 2007 apps goes suitewide in Office 2010, with more contextual changes. Application icons are chunkier and restricted to one letter, which invites confusion in the case of PowerPoint and Publisher, and bemusement in the case of Outlook and OneNote (the latter’s icon is the letter N, one leg of which looks like a 1).

Other interface changes include a new color scheme, with classy muted grays that make the sky blues of past editions seem almost boisterous, and an orange logo instead of the multicolored one of years past.

Page 1 of 3
NEXT >>
  • Squidoo
  • Multiply
  • Facebook
  • Delicious
  • Digg
  • StumbleUpon
  • Twitter
  • TechNet
  • Technorati Favorites
  • MySpace
  • Share/Save/Bookmark
Subscribe E-Newsletter

Don't get left behind. Sign up to receive the latest news.

Our Sponsors
Kerio
Ozaki
redwood
Super Micro
Kaspersky
KOSS
Xitrix
ArcusIT
Emerson
Copylandia
Piso Cloud
ePLDT
Bitdefender
Multi-Color
Chikka
Smart
Peplink
Sophos
Astaro
itproasia
MEC
APC
wsi
 
 
 
PC World Magazine Subscription
subscribe now
Web Design