Word 2016 For Mac Sierra Is Unreliable

This is the same engine that powers Google’s Chrome browser, and it will mean both Edge and Chrome will get better on Windows now. This website and third-party tools use cookies for functional, analytical, and advertising purposes. By continuing to browse the site, closing this banner, scrolling this webpage, or clicking a link, you agree to these cookies. There are two ways to find your Chromebook's MAC address. Using the Networks panel near the clock. Visit Google's Connect to Wi-Fi page.; Scroll down to Find the Media Access Control (MAC) address.Click to expand the section, and follow the instructions. Where to get a clock for chrome on mac.

I also asked why HP Easy Scan does not work on my Mac with Sierra. In the AppStore it is stated that this app is compatible with OSX 10.9 and later. It crashes within 10 seconds after opening under Sierra.

Please, for your own sake, do NOT follow those instruction!!!! Patching your software with mysterious files from 'some guy on the internet' is about as safe as leaving your kids in the care of 'random guy living under a bridge'.

You have no idea what that software is doing or where it came from. It could be spyware, you may be giving all your banking information, passwords, etc to some unknown source. Once this rogue software is on your computer, it can do anything. Check the microsoft.com site for updates to Office 2016, and only install the updates from Microsoft. We use Office 365 at work and have the latest Office 2016 for Mac installed. My Excel version is 15.26 (160910) as is the rest of the Office apps (Outlook is 15.26.1 (160196)) and it updated 2-3 days ago through Microsoft AutoUpdate. I'm still on El Capitan and will be for a few days more until I can gather a bit more information on how well Microsoft and other apps cope with the new macOS.

Try uninstalling Office and reinstalling it again. It might fix the issue, especially if you're downloading it from O365 website as it automatically downloads the latest version. Apple Footer • This site contains user submitted content, comments and opinions and is for informational purposes only.

Apple may provide or recommend responses as a possible solution based on the information provided; every potential issue may involve several factors not detailed in the conversations captured in an electronic forum and Apple can therefore provide no guarantee as to the efficacy of any proposed solutions on the community forums. Apple disclaims any and all liability for the acts, omissions and conduct of any third parties in connection with or related to your use of the site. All postings and use of the content on this site are subject to the.

THE PROBLEM I am working in Microsoft Word 2016 for Mac on a very large bullet-point outline in which I frequently need to highlight text. If I highlight all the text on a bullet point, word automatically highlights the bullet point as well.

This is because Word by default makes its bullet points take on the styles of their associated text, including highlights. This default behavior has always somewhat irked me because I find the resulting highlighting of bullet points distracting and sloppy. PREVIOUS MANUAL FIXES Previously, I have manually fixed the issue. For example, I sometimes would highlight only part of the associated text, then highlighting the rest of text (partially fixing the issue ex ante--but not allowing me to highlight all the text I wanted to at once). Other times, I would fix the issue ex post: I would highlight all the associated text, resulting in the bullet point becoming highlighted, but would then delete the bullet point, bring my text into line with the previous unhighlighted bullet point, and then click 'enter' to create a new unhighlighted bullet point (this worked because the text associated with the previous bullet point was not completely highlighted). THE NEED FOR AUTOMATION Now, however, I am dealing with a very long document and repetitively manually fixing the issue would be far too inefficient. Thus, I am now looking for a solution that fixes/prevents the bullet point highlighting without me having to make arduous individual changes each time I highlight all the text associated with a bullet point.

My hope is that I could create either an Automator workflow or Microsoft Word 2016 (for Mac) macro that, upon activation, would either: (i) highlight only the associated text of a bullet point--leaving the bullet point unhighlighted--or (ii) automatically remove the highlighting of a highlighted bullet point while leaving the associated text highlighted. With regard to option (ii), I would be happy with a workflow/macro that either (a) removed highlighting from an individual bullet point or (b) removed highlighting from all bullet points in a given document--though the latter is probably preferable. Does anyone have any ideas as to whether any of these options are feasible, and, if so, which would be easiest to implement? I figured out how to do it with a Word macro (VBA).

The below will highlight only the text (and not the bullet point) of the paragraph/associated text where the cursor is. You can keybind the macro to make this pretty fast. However, this is not the fastest fix because it doesn't allow you to highlight en masse, but it certainly is way faster than doing it manually. Hope this can help someone who runs into the same problem that I had! Sub Highlighter_Macro() ' ' Highlighter_Macro Macro ' ' Selection.EndKey Unit:=wdLine Selection.MoveUp Unit:=wdParagraph, Count:=1 Selection.MoveDown Unit:=wdParagraph, Count:=1, Extend:=wdExtend Selection.MoveLeft Unit:=wdCharacter, Count:=3, Extend:=wdExtend Options.DefaultHighlightColorIndex = wdTurquoise Selection.Range.HighlightColorIndex = wdTurquoise Selection.EndKey Unit:=wdLine Selection.MoveLeft Unit:=wdCharacter, Count:=3, Extend:=wdExtend Options.DefaultHighlightColorIndex = wdTurquoise Selection.Range.HighlightColorIndex = wdTurquoise Selection.EndKey Unit:=wdLine End Sub.