<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Excel24x7</title>
    <description>The latest articles on Forem by Excel24x7 (@excel24x7).</description>
    <link>https://forem.com/excel24x7</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Forganization%2Fprofile_image%2F10459%2F3f41554e-7cd4-4e11-a2be-a80d7a4b0bee.png</url>
      <title>Forem: Excel24x7</title>
      <link>https://forem.com/excel24x7</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/excel24x7"/>
    <language>en</language>
    <item>
      <title>How Can You Assign a Value/Category based on Number Range in Excel?</title>
      <dc:creator>Vigneshwaran Vijayakumar</dc:creator>
      <pubDate>Tue, 17 Jun 2025 08:23:00 +0000</pubDate>
      <link>https://forem.com/excel24x7/how-can-you-assign-a-valuecategory-based-on-number-range-in-excel-b32</link>
      <guid>https://forem.com/excel24x7/how-can-you-assign-a-valuecategory-based-on-number-range-in-excel-b32</guid>
      <description>&lt;p&gt;Assigning a category based on a number range is a common practice everywhere in schools, colleges, and offices. You can do this in Excel, too. By using the right Excel functions and formulas, you can assign categories to values based on their range in the cells. In this tutorial, I will share you the three working methods to &lt;strong&gt;Assign a category&lt;/strong&gt; or &lt;strong&gt;value based on the number range in Excel&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The functions used in this tutorials are,&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Functions Used&lt;/th&gt;
&lt;th&gt;Used for&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;IF&lt;/td&gt;
&lt;td&gt;To perform logical tests and return different values based on whether the test is &lt;strong&gt;TRUE&lt;/strong&gt; or &lt;strong&gt;FALSE&lt;/strong&gt;.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;VLOOKUP&lt;/td&gt;
&lt;td&gt;To look up a value in the &lt;strong&gt;first column&lt;/strong&gt; of a table and &lt;strong&gt;return a value&lt;/strong&gt; in the same row from another column.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;IFS (Later 2019 or Office 365)&lt;/td&gt;
&lt;td&gt;To test &lt;strong&gt;multiple conditions&lt;/strong&gt; and return a value corresponding to the first TRUE condition.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Assigning Category to the Number Range Using IF Function:
&lt;/h2&gt;

&lt;p&gt;The &lt;strong&gt;IF&lt;/strong&gt; function in Excel helps you perform a &lt;strong&gt;logical test&lt;/strong&gt; and return &lt;strong&gt;one or more values&lt;/strong&gt; depending on whether the test is &lt;strong&gt;true&lt;/strong&gt; or &lt;strong&gt;false&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Let’s say we have a table with a list of student names and their total marks. Now, we’re going to use the IF function to categorize their performance into three categories such as &lt;strong&gt;Poor&lt;/strong&gt;, &lt;strong&gt;Fair&lt;/strong&gt;, or &lt;strong&gt;Good&lt;/strong&gt; based on their total marks.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_2jnhkhbozo-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_2jnhkhbozo-by-excel24x7.webp" title="Using the IF function to assign performance categories to students based on their total marks." alt="Using the IF function to assign performance categories to students based on their total marks." width="1156" height="565"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Using the &lt;strong&gt;IF function&lt;/strong&gt; to assign performance categories to students based on their total marks.&lt;/p&gt;

&lt;p&gt;The used formula is,&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=IF(C4&amp;lt;=200, "Poor", IF(C4&amp;lt;=400, "Fair", IF(C4&amp;lt;=600, "Good", "Excellent")))
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;  If the input value is 200 or less, it shows “&lt;strong&gt;Poor&lt;/strong&gt;“.&lt;/li&gt;
&lt;li&gt;  If it’s more than 200 but 400 or less, it shows “&lt;strong&gt;Fair&lt;/strong&gt;“.&lt;/li&gt;
&lt;li&gt;  If it’s more than 400 but 600 or less, it shows “&lt;strong&gt;Good&lt;/strong&gt;“.&lt;/li&gt;
&lt;li&gt;  If it’s more than 600, it shows “&lt;strong&gt;Excellent&lt;/strong&gt;“.&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; This method is suitable for the short conditions and small datasets Excel worksheets.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Assigning Category to the Number Range Using VLOOKUP Function:
&lt;/h2&gt;

&lt;p&gt;Using the &lt;strong&gt;VLOOKUP&lt;/strong&gt; function for this task is a professional approach. First, you need to create a helper table like the one shown in the image below. The second table should contain the &lt;strong&gt;mark ranges&lt;/strong&gt; and their corresponding &lt;strong&gt;performance&lt;/strong&gt; categories.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_dx9atmxefx-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_dx9atmxefx-by-excel24x7.webp" title="Create helper table for assigning the category using the VLOOKUP Function." alt="Create helper table for assigning the category using the VLOOKUP Function." width="1262" height="509"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Create helper table for assigning the category using the VLOOKUP Function.&lt;/p&gt;

&lt;p&gt;Now, I’m going to use the Excel formula to assign the performance category based on the total marks of the students using VLOOKUP Function.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight swift"&gt;&lt;code&gt; &lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="kt"&gt;VLOOKUP&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kt"&gt;C4&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="n"&gt;$F&lt;/span&gt;&lt;span class="nv"&gt;$4&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="n"&gt;$G&lt;/span&gt;&lt;span class="nv"&gt;$7&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;C4:&lt;/strong&gt; This is the &lt;strong&gt;cell containing the value&lt;/strong&gt; you want to look up.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;$F$4:$G$7:&lt;/strong&gt; This is the range of cells where the &lt;strong&gt;VLOOKUP&lt;/strong&gt; will search for the value. It’s “locked” with dollar signs so it doesn’t change if you copy the formula.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;2:&lt;/strong&gt; This tells Excel to return the value from the second column of the &lt;strong&gt;lookup range&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Executing the above formula will instantly assigned the performance category to the students based on the marks with the help from the helper table.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_n5achnud4v-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_n5achnud4v-by-excel24x7.webp" title="Using the VLOOKUP function to assign performance categories to students based on their total marks." alt="Using the VLOOKUP function to assign performance categories to students based on their total marks." width="1263" height="593"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Using the &lt;strong&gt;VLOOKUP function&lt;/strong&gt; to assign performance categories to students based on their total marks.&lt;/p&gt;

&lt;p&gt;That’s it, This is how you can use the VLOOKUP Function to assign categories based on the inputs in Excel.&lt;/p&gt;

&lt;h2&gt;
  
  
  Assigning Category to the Number Range Using IFS Function:
&lt;/h2&gt;

&lt;p&gt;Using the &lt;strong&gt;IFS function&lt;/strong&gt; to do this will remove the &lt;strong&gt;need to repeat the function&lt;/strong&gt;, like we did with the IF function above.&lt;/p&gt;

&lt;p&gt;The formula used here is,&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=IFS(C4&amp;lt;=200,"Poor",C4&amp;lt;=400,"Fair",C4&amp;lt;=600,"Good",C4&amp;gt;600,"Excellent")
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_rrji7fggvp-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_rrji7fggvp-by-excel24x7.webp" title="Using the IFS function to assign performance categories to students based on their total marks." alt="Using the IFS function to assign performance categories to students based on their total marks." width="1225" height="590"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Using the &lt;strong&gt;IFS function&lt;/strong&gt; to assign performance categories to students based on their total marks.&lt;/p&gt;

&lt;h3&gt;
  
  
  Difference B/W IF &amp;amp; IFS Function:
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;IF Function&lt;/th&gt;
&lt;th&gt;IFS Function&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Checks &lt;strong&gt;one condition&lt;/strong&gt; at a time.&lt;/td&gt;
&lt;td&gt;Checks &lt;strong&gt;multiple conditions&lt;/strong&gt; in a single formula.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;To check multiple conditions, &lt;strong&gt;nested IF&lt;/strong&gt;s are needed, which can get complex.&lt;/td&gt;
&lt;td&gt;No need for &lt;strong&gt;nesting&lt;/strong&gt;, easier to read and write.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Available in &lt;strong&gt;all versions of Excel&lt;/strong&gt;.&lt;/td&gt;
&lt;td&gt;Available only in &lt;strong&gt;Excel 2016 and later&lt;/strong&gt;.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Can return a value if &lt;strong&gt;TRUE&lt;/strong&gt; and another if &lt;strong&gt;FALSE&lt;/strong&gt;.&lt;/td&gt;
&lt;td&gt;Can return &lt;strong&gt;different results for each condition&lt;/strong&gt;.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;strong&gt;Harder to manage&lt;/strong&gt; when there are many conditions (nested IFs).&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;Easier to manage&lt;/strong&gt; when there are many conditions.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;strong&gt;More flexible&lt;/strong&gt; in certain cases when you need only one condition.&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;More efficient&lt;/strong&gt; for evaluating multiple conditions simultaneously.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;That’s it.&lt;/p&gt;

&lt;p&gt;–&lt;a href="https://excel24x7.com/creator/narendhiran-vijayakumar/" rel="noopener noreferrer"&gt;Narendhiran Vijayakumar&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Feel free to comment us below, if you have any queries about the above topic and find more interesting excel tutorials on our homepage: &lt;a href="https://excel24x7.com/" rel="noopener noreferrer"&gt;Excel24x7.com&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>excel</category>
      <category>office</category>
      <category>beginners</category>
      <category>basic</category>
    </item>
    <item>
      <title>How Do I Find Cell Contains Maximum or Minimum Values in Excel?</title>
      <dc:creator>Vigneshwaran Vijayakumar</dc:creator>
      <pubDate>Sun, 15 Jun 2025 18:24:00 +0000</pubDate>
      <link>https://forem.com/excel24x7/how-do-i-find-cell-contains-maximum-or-minimum-values-in-excel-97e</link>
      <guid>https://forem.com/excel24x7/how-do-i-find-cell-contains-maximum-or-minimum-values-in-excel-97e</guid>
      <description>&lt;p&gt;Finding the maximum or minimum values in Excel is important when you’re working with a lot of data. Luckily, you can use formulas to find the cells that contain these maximum and minimum values. In this tutorial, I will show you the most effective ways to find the cell addresses that have both the maximum and minimum values in rows and columns.&lt;/p&gt;

&lt;h2&gt;
  
  
  Find Cell Address from a Column of Numbers:
&lt;/h2&gt;

&lt;p&gt;Let’s look at a worksheet with sales values in &lt;strong&gt;column B&lt;/strong&gt;, from &lt;strong&gt;row 4 to row 18&lt;/strong&gt;. These values are random and can change. Please refer to the image for more details.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_ellyyg0hc8-by-excel24x7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_ellyyg0hc8-by-excel24x7.png" title="Random values in the Row" alt="Random values in the Row" width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Random values in the Row&lt;/p&gt;

&lt;h3&gt;
  
  
  Formula to Find the Cell Address having Maximum Value from Rows:
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=CELL("address",INDEX(B4:B18,MATCH(MAX(B4:B18),B4:B18,0)))
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;MAX(B4:B18)&lt;/strong&gt; – Finds the highest (maximum) value in the range &lt;strong&gt;B4:B18&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;MATCH(MAX(B4:B18), B4:B18, 0)&lt;/strong&gt; :

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;MATCH&lt;/strong&gt; looks for the maximum value (calculated by MAX(&lt;strong&gt;B4:B18&lt;/strong&gt;)) in the range &lt;strong&gt;B4:B18&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  The 0 in the &lt;strong&gt;MATCH&lt;/strong&gt; function means it looks for an exact match.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;MATCH&lt;/strong&gt; returns the relative position of that maximum value in the range.&lt;/li&gt;
&lt;li&gt;  For example, if the maximum value is in cell B10 (which is the 7th cell in the range &lt;strong&gt;B4:B18&lt;/strong&gt;), it returns 7.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;  &lt;strong&gt;INDEX(B4:B18, 7)&lt;/strong&gt; – It returns a reference to the 7th cell in the range &lt;strong&gt;B4:B18&lt;/strong&gt; (which is B10).&lt;/li&gt;

&lt;li&gt;  &lt;strong&gt;CELL(“address”, …)&lt;/strong&gt; – It returns the cell address of the cell that contains the maximum value.&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;Copy &amp;amp; paste the above formula to find the cell address containing the maximum value. The formula will returns the result as “&lt;strong&gt;$B$8&lt;/strong&gt;“. The value $B$8 indicates the location of the maximum value in the current worksheet.&lt;/p&gt;

&lt;h3&gt;
  
  
  Formula to Find the Cell Address having Minimum Value from Rows:
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=CELL("address",INDEX(B4:B18,MATCH(MIN(B4:B18),B4:B18,0)))
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;MIN(B4:B18)&lt;/strong&gt;: It finds the smallest (minimum) value in the range.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The above formula will find the cell address contains the minimum values in the worksheets. The formula will returns the result as “&lt;strong&gt;$B$11&lt;/strong&gt;“. The value &lt;strong&gt;$B$11&lt;/strong&gt; indicates the location of the minimum value in the current worksheet.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_h15j2umvz6-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_h15j2umvz6-by-excel24x7.webp" title="Finding Cell Address contains Both Maximum and Minimum Values from the Rows." alt="Finding Cell Address contains Both Maximum and Minimum Values from the Rows." width="1409" height="667"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Finding Cell Address contains Both Maximum and Minimum Values from the Rows.&lt;/p&gt;

&lt;h2&gt;
  
  
  Find Cell Address from a Row of Numbers:
&lt;/h2&gt;

&lt;p&gt;Similarly, the sales values are in the range from &lt;strong&gt;column C&lt;/strong&gt; to &lt;strong&gt;column P&lt;/strong&gt;, all in &lt;strong&gt;row 3&lt;/strong&gt;. Please refer to the image below.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_jn2ifdylup-by-excel24x7-1024x114.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_jn2ifdylup-by-excel24x7-1024x114.webp" title="Values are presents in Columns" alt="Values are presents in Columns" width="1024" height="114"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Values are presents in Columns&lt;/p&gt;

&lt;h3&gt;
  
  
  Formula to Find the Cell Address having Maximum Value from Columns:
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=CELL("address",INDEX(C3:P3,MATCH(MAX(C3:P3),C3:P3,0)))
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;MAX(C3:P3)&lt;/strong&gt; – Finds the highest (maximum) value in the range &lt;strong&gt;C3:P3&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;MATCH(MAX(C3:P3), C3:P3, 0)&lt;/strong&gt; :

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;MATCH&lt;/strong&gt; looks for the maximum value (calculated by MAX(C3:P3)) in the range &lt;strong&gt;C3:P3&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  The 0 in the &lt;strong&gt;MATCH&lt;/strong&gt; function means it looks for an exact match.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;MATCH&lt;/strong&gt; returns the relative position of that maximum value in the range.&lt;/li&gt;
&lt;li&gt;  For example, if the maximum value is in cell M3 (which is the 3rd cell in the range &lt;strong&gt;C3:P3&lt;/strong&gt;), it returns 3.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;  &lt;strong&gt;INDEX(C3:P3, 3)&lt;/strong&gt; – It returns a reference to the 3rd cell in the range &lt;strong&gt;C3:P3&lt;/strong&gt; (which is M3).&lt;/li&gt;

&lt;li&gt;  &lt;strong&gt;CELL(“address”, …)&lt;/strong&gt; – It returns the cell address of the cell that contains the maximum value.&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;Executing the above formula will return the cell address value contains the maximum value from the different columns. For example, the formula will return the cell address “&lt;strong&gt;$M$3&lt;/strong&gt;” which contains the maximum value.&lt;/p&gt;

&lt;h3&gt;
  
  
  Formula to Find the Cell Address having Minimum Value from Columns:
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=CELL("address",INDEX(C3:P3,MATCH(MIN(C3:P3),C3:P3,0)))
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;MIN(C3:P3)&lt;/strong&gt;: It finds the smallest (minimum) value in the range.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Similarly, the formula will returns the cell address contains the minimum value from the multiple columns. For example, the formula will return the cell address “&lt;strong&gt;$J$3&lt;/strong&gt;” which contains the minimum value from the columns.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_ojfnum3gnn-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_ojfnum3gnn-by-excel24x7.webp" title="Finding Cell Address contains Both Maximum and Minimum Values from the Column." alt="Finding Cell Address contains Both Maximum and Minimum Values from the Column." width="1830" height="474"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Finding Cell Address contains Both Maximum and Minimum Values from the Column.&lt;/p&gt;

&lt;h2&gt;
  
  
  Functions Used to Achieve this:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Used Functions&lt;/th&gt;
&lt;th&gt;Functions Used for&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;CELL&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Returns information about the formatting, location, or contents of a cell.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;INDEX&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Returns the value of an element in a table or array, selected by row and column number.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;MATCH&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Searches for a specified item in a range of cells and returns the relative position of that item.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;MIN&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Returns the smallest number in a set of values.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;MAX&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Returns the largest number in a set of values.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;That’s it.&lt;/p&gt;

&lt;p&gt;–&lt;a href="https://excel24x7.com/creator/narendhiran-vijayakumar/" rel="noopener noreferrer"&gt;Narendhiran Vijayakumar&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Feel free to comment us below, if you have any queries about the above topic and find more interesting excel tutorials on our homepage: &lt;a href="https://excel24x7.com/" rel="noopener noreferrer"&gt;Excel24x7.com&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>office</category>
      <category>beginners</category>
      <category>basic</category>
      <category>excel</category>
    </item>
    <item>
      <title>How Can I Delete All AutoShapes, Objects in Excel?</title>
      <dc:creator>Vigneshwaran Vijayakumar</dc:creator>
      <pubDate>Fri, 13 Jun 2025 08:18:00 +0000</pubDate>
      <link>https://forem.com/excel24x7/how-can-i-delete-all-autoshapes-objects-in-excel-41hb</link>
      <guid>https://forem.com/excel24x7/how-can-i-delete-all-autoshapes-objects-in-excel-41hb</guid>
      <description>&lt;p&gt;AutoShapes in Excel refer to predefined drawing shapes that you can insert into a worksheet to improvise visual presentation by adding &lt;strong&gt;lines, arrows, rectangles, circles, callouts, flowchart symbols, banners, stars&lt;/strong&gt;, and more. Objects in Excel is also similar to the AutoShapes, but it extends upto &lt;strong&gt;Charts, Shapes or AutoShapes, Pictures, Text Boxes, SmartArt, Buttons or Controls, Embedded Objects, Comments or Notes and Hyperlinks&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Too much objects filled your excel sheets? It is so easy to clear all the objects and autoshapes from your worksheet using &lt;strong&gt;GO TO&lt;/strong&gt; dialog box and &lt;strong&gt;VBA Code&lt;/strong&gt;. In this tutorial, I will guide you to &lt;strong&gt;delete all objects and autoshapes instantly&lt;/strong&gt; from your worksheets in a &lt;strong&gt;Excel&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Method 1: Delete Objects, AutoShapes using Go To Dialog Box
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_5ctqhjqrdv-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_5ctqhjqrdv-by-excel24x7.webp" title="Sample Worksheet filled with Objects &amp;amp; AutoShapes." alt="Sample Worksheet filled with Objects &amp;amp; AutoShapes." width="1105" height="683"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Sample Worksheet filled with Objects &amp;amp; AutoShapes.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  You can use the Go To dialog box to completely wipe all the images, gif, videos and autoshapes from your worksheets.&lt;/li&gt;
&lt;li&gt;  You need to use the keyboard shortcut CTRL + G or F5 to launch the GO TO dialog window.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_xuqwwhlwh6-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_xuqwwhlwh6-by-excel24x7.webp" title="Using F5 to launch the Go To dialog box" alt="Using F5 to launch the Go To dialog box" width="1577" height="676"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Using F5 to launch the Go To dialog box&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  In the left bottom, you need to press the option &lt;strong&gt;Special…&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;  Then you need to choose the &lt;strong&gt;Objects&lt;/strong&gt; option from the list, and click the &lt;strong&gt;OK&lt;/strong&gt; button to confirm the selection.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_w0gm2ylyd6-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_w0gm2ylyd6-by-excel24x7.webp" title="Choose Objects and Click OK button." alt="Choose Objects and Click OK button." width="378" height="430"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Choose Objects and Click OK button.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Once you did this, all the objects in your worksheets will be selected and then you can use the Del keyboard shortcut to remove all the objects from your worksheet.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_tcuolhcqvm-by-excel24x7.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_tcuolhcqvm-by-excel24x7.gif" title="Using Go To dialog box to select and remove all objects from a worksheets" alt="Using Go To dialog box to select and remove all objects from a worksheets" width="720" height="311"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Using Go To dialog box to select and remove all objects from a worksheets&lt;/p&gt;

&lt;p&gt;That’s it.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;⚠️This will delete all the objects and autoshapes from your sheets and so make a backup before performing options.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Method 2: Remove Objects, AutoShapes using VBA in Excel
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;  Use the keyboard shortcut ALT + F11 to launch the VBA editor.&lt;/li&gt;
&lt;li&gt;  Then from the menu bar, you need to choose &lt;strong&gt;Insert&lt;/strong&gt; -&amp;gt; &lt;strong&gt;Module&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_ne57wv3o1d-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_ne57wv3o1d-by-excel24x7.webp" title="Choose Module from the Insert Menu" alt="Choose Module from the Insert Menu" width="975" height="296"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Choose Module from the Insert Menu&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Copy and paste the code in the module.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Sub DeleteShapes()
Dim Shp As Shape
For Each Shp In ActiveSheet.Shapes
Shp.Delete
Next Shp
End Sub
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;  Now, You need to use the Keyboard shortcut F5 to execute the command.&lt;/li&gt;
&lt;li&gt;  A popup window will appear on your screen asking you to choose the MACROS.&lt;/li&gt;
&lt;li&gt;  Choose the DeleteShapes MACROS and click the &lt;strong&gt;RUN&lt;/strong&gt; button to clear all the autoshapes, objects from your worksheets.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s it.&lt;/p&gt;

&lt;p&gt;–&lt;a href="https://excel24x7.com/creator/narendhiran-vijayakumar/" rel="noopener noreferrer"&gt;Narendhiran Vijayakumar&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Feel free to comment us below, if you have any queries about the above topic and find more interesting excel tutorials on our homepage: &lt;a href="https://excel24x7.com/" rel="noopener noreferrer"&gt;Excel24x7.com&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>office</category>
      <category>excel</category>
      <category>beginners</category>
      <category>windows</category>
    </item>
    <item>
      <title>How to Use a Formula to Convert Text to Sentence Case in Excel?</title>
      <dc:creator>Vigneshwaran Vijayakumar</dc:creator>
      <pubDate>Wed, 11 Jun 2025 09:15:00 +0000</pubDate>
      <link>https://forem.com/excel24x7/how-to-use-a-formula-to-convert-text-to-sentence-case-in-excel-3fl0</link>
      <guid>https://forem.com/excel24x7/how-to-use-a-formula-to-convert-text-to-sentence-case-in-excel-3fl0</guid>
      <description>&lt;p&gt;In Excel, you can easily convert the text string into Sentence Case and it will helps you to read and engageable. While Excel doesn’t have a built-in “sentence case” function, you can achieve this formatting using a custom formula. In this tutorial, I will explain you the multiple methods to convert a text string into a sentence case format in Excel using Formula and VBA codes.&lt;/p&gt;

&lt;p&gt;If you want to convert a text string into a valid Capitalized Case and then you can use the Excel &lt;strong&gt;PROPER function&lt;/strong&gt;. The Excel &lt;strong&gt;PROPER Function&lt;/strong&gt; simply converts the text strings into a &lt;strong&gt;1st letter capitalized strings&lt;/strong&gt; (Each 1st letter of a word will be capitalized in a sentence).&lt;/p&gt;

&lt;h2&gt;
  
  
  Method 1: Using Formula to Convert Text into Sentence Case:
&lt;/h2&gt;

&lt;p&gt;The below formula converts any text, whether it’s in all capital letters or all lowercase, into sentence case.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=UPPER(LEFT(A2,1)) &amp;amp; LOWER(MID(A2,2,LEN(A2)-1))
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_more1hxhgk-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_more1hxhgk-by-excel24x7.webp" title="Formula Converted the input text strings into a Sentence Case Strings" alt="Formula Converted the input text strings into a Sentence Case Strings" width="1539" height="615"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Formula Converted the input text strings into a Sentence Case Strings&lt;/p&gt;

&lt;h3&gt;
  
  
  Formula Explanation:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;LEFT(B4,1)&lt;/strong&gt; – This part of the formula extracts the &lt;strong&gt;first character&lt;/strong&gt; of the text in cell B4.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;UPPER(LEFT(B4,1))&lt;/strong&gt; – This section converts that first character to uppercase.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;MID(B4,2,LEN(B4)-1)&lt;/strong&gt; – This formula, extract the second part of the text string.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;LOWER(MID(B4,2,LEN(B4)-1))&lt;/strong&gt; – Which converts the text string into lowercase.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;&amp;amp;&lt;/strong&gt; – Simply appends the text strings.&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Functions Used&lt;/th&gt;
&lt;th&gt;Function Explanation&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;LEFT&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Extracts a specified number of characters from the start (left side) of a text string.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;UPPER&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Converts all letters in a text string to uppercase.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;MID&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Returns a specific number of characters from a text string, starting at a specified position.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;LEN&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Returns the total number of characters in a text string.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;LOWER&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Converts all letters in a text string to lowercase.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;That’s it. This is how you can use the formula to convert any text strings into a sentence case text strings.&lt;/p&gt;

&lt;h2&gt;
  
  
  Method 2: Using VBA Code to Convert Text into Sentence Case Strings
&lt;/h2&gt;

&lt;p&gt;This is the alternative method to do. You might need to use the &lt;a href="https://en.wikipedia.org/wiki/Visual_Basic_for_Applications" rel="noopener noreferrer"&gt;VBA code&lt;/a&gt; to convert any text string into sentence case strings.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  First, you need to use the keyboard shortcut ALT + F11 to launch the VBA window.&lt;/li&gt;
&lt;li&gt;  Then from the menu bar, you need to choose &lt;strong&gt;Insert&lt;/strong&gt; -&amp;gt; &lt;strong&gt;Module&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_ne57wv3o1d-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_ne57wv3o1d-by-excel24x7.webp" title="Choose Module from the Insert Menu" alt="Choose Module from the Insert Menu" width="975" height="296"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Choose Module from the Insert Menu&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Now, you need to copy &amp;amp; paste the below vba code to convert all text strings into sentence case strings.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Sub SentenceCase()
Dim Rng As Range
Dim WorkRng As Range
On Error Resume Next
xTitleId = "Sentence Case by Excel24x7.com"
Set WorkRng = Application.Selection
Set WorkRng = Application.InputBox("Range", xTitleId, WorkRng.Address, Type:=8)
For Each Rng In WorkRng
    xValue = Rng.Value
    xStart = True
    For i = 1 To VBA.Len(xValue)
        ch = Mid(xValue, i, 1)
        Select Case ch
            Case "."
            xStart = True
            Case "?"
            xStart = True
            Case "a" To "z"
            If xStart Then
                ch = UCase(ch)
                xStart = False
            End If
            Case "A" To "Z"
            If xStart Then
                xStart = False
            Else
                ch = LCase(ch)
            End If
        End Select
        Mid(xValue, i, 1) = ch
    Next
    Rng.Value = xValue
Next
End Sub
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_0syjbf2xjs-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_0syjbf2xjs-by-excel24x7.webp" title="Paste the VBA code into the module." alt="Paste the VBA code into the module." width="1741" height="962"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Paste the VBA code into the module.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Before executing the code, you need choose the cell range that you want to convert into a sentence case strings.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_s1kuudxxf8-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_s1kuudxxf8-by-excel24x7.webp" title="You need to select the Cell Range" alt="You need to select the Cell Range" width="981" height="617"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You need to select the Cell Range&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Now, You need to use the Keyboard shortcut F5 to execute the command.&lt;/li&gt;
&lt;li&gt;  The mini popup window will appear on you screen and in that the selected range value pre-entered by default.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_livjeux2jr-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_livjeux2jr-by-excel24x7.webp" title="Mini Popup window will appear on your screen" alt="Mini Popup window will appear on your screen" width="1001" height="599"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Mini Popup window will appear on your screen&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Once you check the selected range values, click the &lt;strong&gt;OK&lt;/strong&gt; button to convert all the cell values into a Sentence case text strings.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s it.&lt;/p&gt;

&lt;p&gt;–&lt;a href="https://excel24x7.com/creator/narendhiran-vijayakumar/" rel="noopener noreferrer"&gt;Narendhiran Vijayakumar&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Feel free to comment us below, if you have any queries about the above topic and find more interesting excel tutorials on our homepage: &lt;a href="https://excel24x7.com/" rel="noopener noreferrer"&gt;Excel24x7.com&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>tips</category>
      <category>beginners</category>
      <category>excel</category>
      <category>office</category>
    </item>
    <item>
      <title>How Can You Reverse Signs of Cell Values in Excel?</title>
      <dc:creator>Vigneshwaran Vijayakumar</dc:creator>
      <pubDate>Mon, 09 Jun 2025 01:18:00 +0000</pubDate>
      <link>https://forem.com/excel24x7/how-can-you-reverse-signs-of-cell-values-in-excel-2i36</link>
      <guid>https://forem.com/excel24x7/how-can-you-reverse-signs-of-cell-values-in-excel-2i36</guid>
      <description>&lt;p&gt;Sometimes, when you copy values from websites and paste them into Excel, the &lt;strong&gt;sign of the numbers may get reversed&lt;/strong&gt; due to the way the content is designed in &lt;strong&gt;HTML&lt;/strong&gt;. This issue often happens when copying &lt;strong&gt;stock prices or financial data&lt;/strong&gt; from online sources into Excel. Thankfully, Excel provides several &lt;strong&gt;simple and effective methods&lt;/strong&gt; to fix this. In this tutorial, I’ll explain how to &lt;strong&gt;reverse the sign of numbers&lt;/strong&gt; in Excel using both &lt;strong&gt;formulas&lt;/strong&gt; and &lt;strong&gt;VBA code&lt;/strong&gt;, along with clear examples for better understanding.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_zzgipvord0-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_zzgipvord0-by-excel24x7.webp" title="Original Cell Values that needed to be Reversed its sign." alt="Original Cell Values that needed to be Reversed its sign." width="876" height="558"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Original Cell Values that needed to be Reversed its sign.&lt;/p&gt;

&lt;p&gt;You can reverse the sign values of the any cells values using the following methods:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  By using Paste Special Function.&lt;/li&gt;
&lt;li&gt;  By using VBA Codes.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Method 1: Using Paste Special Function to Reverse Cells Values Sign
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;  First, you need to enter the value &lt;strong&gt;-1&lt;/strong&gt; in an empty cell. In this example, the value &lt;strong&gt;-1&lt;/strong&gt; is entered in cell &lt;strong&gt;G3&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_rxgkq6aynd-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_rxgkq6aynd-by-excel24x7.webp" title="Entering the value -1 in any Empty Cell" alt="Entering the value -1 in any Empty Cell" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Entering the value -1 in any Empty Cell&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Now, you need to copy the cell &lt;strong&gt;G3&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_dh5enusjyn-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_dh5enusjyn-by-excel24x7.webp" title="Copy the cell G3" alt="Copy the cell G3" width="1082" height="508"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Copy the cell G3&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  After this, you need to select the &lt;strong&gt;Range of cell values&lt;/strong&gt; (&lt;strong&gt;B3:E13&lt;/strong&gt;) that need to be reverse its sign.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_wqlxrx4lwk-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_wqlxrx4lwk-by-excel24x7.webp" title="Selecting the range of cell values immediately after copying the cell values." alt="Selecting the range of cell values immediately after copying the cell values." width="1188" height="506"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Selecting the range of cell values immediately after copying the cell values.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Once you selected the range of cells, you need to right click on the chosen range of cells and choose &lt;strong&gt;Paste Special&lt;/strong&gt; -&amp;gt; &lt;strong&gt;Paste Special&lt;/strong&gt; option.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_chhczgvp3a-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_chhczgvp3a-by-excel24x7.webp" title="Choose Paste Special option by right clicking on the selected range of cells." alt="Choose Paste Special option by right clicking on the selected range of cells." width="1183" height="668"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Choose Paste Special option by right clicking on the selected range of cells.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  In the Paste Special dialog box, choose the &lt;strong&gt;Multiply&lt;/strong&gt; from the &lt;strong&gt;Operation&lt;/strong&gt; and then click the &lt;strong&gt;OK&lt;/strong&gt; button.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_ueizzphjtr-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_ueizzphjtr-by-excel24x7.webp" title="Choosing Multiply option from Paste Special option" alt="Choosing Multiply option from Paste Special option" width="1189" height="602"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Choosing Multiply option from Paste Special option&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Boom, once you did this, The signs will be reversed in the selected range of cells.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s it. This is how you can reverse cell values sign using Paste Special function option.&lt;/p&gt;

&lt;h2&gt;
  
  
  Method 2: Using VBA Code to Reverse Cell Values Signs
&lt;/h2&gt;

&lt;p&gt;This is the alternative method to do. You might need to use the &lt;a href="https://en.wikipedia.org/wiki/Visual_Basic_for_Applications" rel="noopener noreferrer"&gt;VBA code&lt;/a&gt; to reverse your signs of the cell values. You can use the keyboard shortcut ALT + F11 to launch the VBA Editor in Excel.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Firstly, you need to select the range of cell values that need to be reverse it’s signs (&lt;strong&gt;IMPORTANT&lt;/strong&gt;) as shown in the image.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_k4n9brysbh-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_k4n9brysbh-by-excel24x7.webp" title="Select the Range of Cell values" alt="Select the Range of Cell values" width="1084" height="509"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Select the Range of Cell values&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Then, you need to use the the keyboard shortcut ALT + F11 to launch the VBA Code editor.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_uzsprig0fs-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_uzsprig0fs-by-excel24x7.webp" title="VBA Editor in Excel" alt="VBA Editor in Excel" width="1920" height="1020"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;VBA Editor in Excel&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Now, you need to choose the &lt;strong&gt;Insert&lt;/strong&gt; from the &lt;strong&gt;Menu bar&lt;/strong&gt; and choose the &lt;strong&gt;Module&lt;/strong&gt; option as shown in the image below.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_bokvjaoucr-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_bokvjaoucr-by-excel24x7.webp" title="Choose Module Option" alt="Choose Module Option" width="874" height="292"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Choose Module Option&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Now, in the module, you need to paste the VBA Code to reverse the sign of cell values.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Sub Convert()
Dim C As Range
For Each C In Selection
C.Value = -C.Value
Next C
End Sub
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_tazwrencaq-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_tazwrencaq-by-excel24x7.webp" title="Paste the VBA code in the Module" alt="Paste the VBA code in the Module" width="1681" height="777"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Paste the VBA code in the Module&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Now, in the Menu bar, you may see the option “&lt;strong&gt;Run&lt;/strong&gt;“, click on it and choose the &lt;strong&gt;Run Sub/Userform F5&lt;/strong&gt; option to execute the VBA code. Alternatively, you can use the keyboard shortcut F5 to run the command.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s it.&lt;/p&gt;

&lt;p&gt;–&lt;a href="https://excel24x7.com/creator/narendhiran-vijayakumar/" rel="noopener noreferrer"&gt;Narendhiran Vijayakumar&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Feel free to comment us below, if you have any queries about the above topic and find more interesting excel tutorials on our homepage: &lt;a href="https://excel24x7.com/" rel="noopener noreferrer"&gt;Excel24x7.com&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>office</category>
      <category>excel</category>
      <category>tips</category>
      <category>beginners</category>
    </item>
    <item>
      <title>How to Sync Selected Range Across All Worksheets in Excel?</title>
      <dc:creator>Vigneshwaran Vijayakumar</dc:creator>
      <pubDate>Sat, 07 Jun 2025 06:04:00 +0000</pubDate>
      <link>https://forem.com/excel24x7/how-to-sync-selected-range-across-all-worksheets-in-excel-4dbm</link>
      <guid>https://forem.com/excel24x7/how-to-sync-selected-range-across-all-worksheets-in-excel-4dbm</guid>
      <description>&lt;p&gt;In Excel, you may often work with &lt;strong&gt;multiple worksheets or workbooks&lt;/strong&gt; while managing data. Sometimes, you need to &lt;strong&gt;sync data&lt;/strong&gt; between two or more worksheets. Whether you’re using &lt;strong&gt;templates&lt;/strong&gt;, repeating &lt;strong&gt;headers&lt;/strong&gt;, or shared &lt;strong&gt;report values&lt;/strong&gt;, Excel does &lt;strong&gt;not&lt;/strong&gt; offer a built-in feature to &lt;strong&gt;link a selected range&lt;/strong&gt; across multiple sheets directly.&lt;/p&gt;

&lt;p&gt;In this tutorial, I’ve added the two methods including using:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  VBA Code to Sync Worksheets.&lt;/li&gt;
&lt;li&gt;  Sync Worksheets values using Select All Sheets option.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Method 1: Sync Worksheet Values using Select All Sheets Option
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_qw83zo3fke-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_qw83zo3fke-by-excel24x7.webp" title="How to Sync Selected Range Across All Worksheets in Excel?" alt="Sample Values in Sheet 1 in a Workbook!" width="906" height="435"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Sample Values in Sheet 1 in a Workbook!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_mp9vvwpruc-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_mp9vvwpruc-by-excel24x7.webp" title="Sample Values in Sheet 2 in a Workbook!" alt="Sample Values in Sheet 2 in a Workbook!" width="879" height="440"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Sample Values in Sheet 2 in a Workbook!&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Firstly, you need to select a range of cell values in the current active worksheet that you want to select in the all worksheets.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_t4qtm76pxo-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_t4qtm76pxo-by-excel24x7.webp" title="Select the Range of cells that you want to sync with other sheets values" alt="Select the Range of cells that you want to sync with other sheets values" width="904" height="440"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Select the Range of cells that you want to sync with other sheets values&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  As shown in the above image, I’ve choose the cell values range between &lt;strong&gt;A2:B6&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;  Then you need to right click on the &lt;strong&gt;worksheet tab&lt;/strong&gt; and choose the &lt;strong&gt;Select All Sheets&lt;/strong&gt; option from the list of menu.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_jah3f2dxxh-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_jah3f2dxxh-by-excel24x7.webp" title="Choose the Select All Sheets option from the Worksheet tab." alt="Choose the Select All Sheets option from the Worksheet tab." width="1007" height="719"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Choose the Select All Sheets option from the Worksheet tab.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Now, all the &lt;strong&gt;values&lt;/strong&gt; or the selected &lt;strong&gt;cell range&lt;/strong&gt; have been copied and &lt;strong&gt;synced across all worksheets&lt;/strong&gt; in the workbook.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_eatizjx1zr-by-excel24x7.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_eatizjx1zr-by-excel24x7.gif" title="Initial view of selected cell range (Name and Age table) on a single worksheet in Excel before syncing across all sheets using the Select All Sheets option." alt="Initial view of selected cell range (Name and Age table) on a single worksheet in Excel before syncing across all sheets using the Select All Sheets option." width="1019" height="796"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This image displays the range of cell values has been selected across all worksheets in a workbook.&lt;/p&gt;

&lt;p&gt;That’s it, this is how you can sync values in a range of cells in the workbook using Select All Sheets option in Excel.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; Using the &lt;strong&gt;“Select All Sheets”&lt;/strong&gt; option in Excel lets you apply the &lt;strong&gt;same selected range&lt;/strong&gt; to all worksheets at once. However, this only syncs the &lt;strong&gt;selection itself&lt;/strong&gt;, not the &lt;strong&gt;visible position&lt;/strong&gt; of the selection on the screen. To view the selected range in the &lt;strong&gt;same spot&lt;/strong&gt; on each sheet, you’ll need to &lt;strong&gt;manually scroll&lt;/strong&gt; each worksheet.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Method 2: Sync Worksheet Values using VBA Code:
&lt;/h2&gt;

&lt;p&gt;This is the alternative method to do. You might need to use the &lt;a href="https://en.wikipedia.org/wiki/Visual_Basic_for_Applications" rel="noopener noreferrer"&gt;VBA code&lt;/a&gt; to sync the worksheet values. Using VBA code in Excel, you can easily make all worksheets select the same range and also ensure that the selected range is visible in the same position of the window across all sheets. You can use the keyboard shortcut ALT + F11 to launch the VBA Editor in Excel.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Firstly, you need to select the range of cell values (&lt;strong&gt;IMPORTANT&lt;/strong&gt;) as shown in the image.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_t4qtm76pxo-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_t4qtm76pxo-by-excel24x7.webp" title="Select the Range of cells that you want to sync with other sheets values" alt="Select the Range of cells that you want to sync with other sheets values" width="904" height="440"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Select the Range of cells that you want to sync with other sheets values&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Then, you need to use the the keyboard shortcut ALT + F11 to launch the VBA Code editor.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_p0hw3216jg-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_p0hw3216jg-by-excel24x7.webp" title="VBA Code Editor" alt="VBA Code Editor" width="1920" height="1020"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;VBA Code Editor&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Now, in the &lt;strong&gt;Insert&lt;/strong&gt; option located in the top of the Menu bar, you need to choose the &lt;strong&gt;Module&lt;/strong&gt; option.&lt;/li&gt;
&lt;li&gt;  A editor window will appear on your screen, in that you need to paste the below code.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Sub SynchSheets()
'Update 20130912
Dim WorkShts As Worksheet
Dim sht As Worksheet
Dim Top As Long
Dim Left As Long
Dim RngAddress As String
Application.ScreenUpdating = False
Set WorkShts = Application.ActiveSheet
Top = Application.ActiveWindow.ScrollRow
Left = Application.ActiveWindow.ScrollColumn
RngAddress = Application.ActiveWindow.RangeSelection.Address
For Each sht In Application.Worksheets
    If sht.Visible Then
        sht.Activate
        sht.Range(RngAddress).Select
        ActiveWindow.ScrollRow = Top
        ActiveWindow.ScrollColumn = Left
    End If
Next sht
WorkShts.Activate
Application.ScreenUpdating = True
End Sub
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;  Now, in the Menu bar, you may see the option “&lt;strong&gt;Run&lt;/strong&gt;“, click on it and choose the &lt;strong&gt;Run Sub/Userform F5&lt;/strong&gt; option to execute the VBA code. Alternatively, you can use the keyboard shortcut F5 to run the command.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_hizocvnsmb-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_hizocvnsmb-by-excel24x7.webp" title="Run VBA Code using F5 Key" alt="Run VBA Code using F5 Key" width="1360" height="797"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Run VBA Code using F5 Key&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Get back to the worksheet, there you can see that the selected range of cells has been synchronized with all the worksheets in the workbook.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Quick Video Tutor of using VBA Code to sync range of cells among all worksheets.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F15w4srwuae1gr9khpqoe.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F15w4srwuae1gr9khpqoe.gif" alt="Video Tutorial" width="800" height="423"&gt;&lt;/a&gt;&lt;br&gt;
That’s it.&lt;/p&gt;

&lt;p&gt;–&lt;a href="https://excel24x7.com/creator/narendhiran-vijayakumar/" rel="noopener noreferrer"&gt;Narendhiran Vijayakumar&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Feel free to comment us below, if you have any queries about the above topic and find more interesting excel tutorials on our homepage: &lt;a href="https://excel24x7.com/" rel="noopener noreferrer"&gt;Excel24x7.com&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>office</category>
      <category>excel</category>
      <category>tips</category>
      <category>beginners</category>
    </item>
    <item>
      <title>How Can You Convert an Angle Between Degrees and Radians in Excel?</title>
      <dc:creator>Vigneshwaran Vijayakumar</dc:creator>
      <pubDate>Fri, 23 May 2025 15:12:00 +0000</pubDate>
      <link>https://forem.com/excel24x7/how-can-you-convert-an-angle-between-degrees-and-radians-in-excel-3h00</link>
      <guid>https://forem.com/excel24x7/how-can-you-convert-an-angle-between-degrees-and-radians-in-excel-3h00</guid>
      <description>&lt;p&gt;Before starting the tutorial, it’s important to understand &lt;strong&gt;degrees&lt;/strong&gt; and &lt;strong&gt;radians&lt;/strong&gt;. In Excel, they are used in &lt;strong&gt;trigonometric functions&lt;/strong&gt; such as &lt;strong&gt;SIN&lt;/strong&gt;, &lt;strong&gt;COS&lt;/strong&gt;, and &lt;strong&gt;TAN&lt;/strong&gt;, which need the angle to be in &lt;strong&gt;radians&lt;/strong&gt; for accurate calculations.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is meant by Degrees?
&lt;/h2&gt;

&lt;p&gt;A degree is a unit for measuring angles, where a full circle is divided into 360 equal parts. For example, A right angle is &lt;strong&gt;90 degrees&lt;/strong&gt;, which is one-quarter of a full circle (360 degrees).&lt;/p&gt;

&lt;h2&gt;
  
  
  What is meant by Radians?
&lt;/h2&gt;

&lt;p&gt;A radian is the angle formed when the arc length equals the radius of a circle, with a full circle being 2π radians. If a circle has a &lt;strong&gt;radius of 5 cm&lt;/strong&gt; and the &lt;strong&gt;arc length is also 5 cm&lt;/strong&gt;, then the angle formed at the center is &lt;strong&gt;1 radian&lt;/strong&gt;.This is because an angle of &lt;strong&gt;1 radian&lt;/strong&gt; is defined when the &lt;strong&gt;arc length equals the radius&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Primary Differences Between Degrees &amp;amp; Radians:
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Aspect&lt;/th&gt;
&lt;th&gt;Degrees&lt;/th&gt;
&lt;th&gt;Radians&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Definition&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Full circle = 360°&lt;/td&gt;
&lt;td&gt;Full circle = 2π 2\pi radians&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Conversion Formula&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Multiply by π180 \frac{\pi}{180}&lt;/td&gt;
&lt;td&gt;Multiply by 180π \frac{180}{\pi}&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Use in Math&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Common in geometry and daily use&lt;/td&gt;
&lt;td&gt;Preferred in calculus and advanced math&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Symbol&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Uses “°”&lt;/td&gt;
&lt;td&gt;No symbol (or sometimes “rad”)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Formula To Convert Degrees to Radians:
&lt;/h2&gt;

&lt;p&gt;In Excel, the &lt;strong&gt;RADIANS&lt;/strong&gt; function directly converts a given &lt;strong&gt;degree value&lt;/strong&gt; into its equivalent &lt;strong&gt;radian values&lt;/strong&gt;.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=RADIANS(B4) //outputs radian values.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Degrees&lt;/th&gt;
&lt;th&gt;Radians&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;30&lt;/td&gt;
&lt;td&gt;0.523598776&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;45&lt;/td&gt;
&lt;td&gt;0.785398163&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;75&lt;/td&gt;
&lt;td&gt;1.308996939&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;109&lt;/td&gt;
&lt;td&gt;1.902408885&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;155&lt;/td&gt;
&lt;td&gt;2.705260341&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;222&lt;/td&gt;
&lt;td&gt;3.874630939&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;345&lt;/td&gt;
&lt;td&gt;6.021385919&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;360&lt;/td&gt;
&lt;td&gt;6.283185307&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_2umehe8dtb-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_2umehe8dtb-by-excel24x7.webp" title="Converting Degree Values into Radians using RADIAN Function" alt="Converting Degree Values into Radians using RADIAN Function" width="951" height="505"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Converting Degree Values into Radians using RADIAN Function&lt;/p&gt;

&lt;p&gt;By default, the &lt;strong&gt;RADIANS&lt;/strong&gt; function in Excel returns the result with &lt;strong&gt;more than 10 decimal places&lt;/strong&gt;. You can &lt;strong&gt;format the cell&lt;/strong&gt; to limit the result to &lt;strong&gt;2 decimal places&lt;/strong&gt;, as shown in the example below.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  To do this, You need to select the cells contains the output Radian values.&lt;/li&gt;
&lt;li&gt;  Right click on the cells and choose &lt;strong&gt;Format Cells&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  Now, under the &lt;strong&gt;Category&lt;/strong&gt; section, select &lt;strong&gt;Custom&lt;/strong&gt;, and then choose the format &lt;strong&gt;“0.00”&lt;/strong&gt; to display decimal values &lt;strong&gt;up to 2 decimal places&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_lwfcts2kli-by-excel24x7.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_lwfcts2kli-by-excel24x7.gif" title="Format cells to display decimal values up to 2 decimal places" alt="Format cells to display decimal values up to 2 decimal places" width="760" height="403"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Format cells to display decimal values up to 2 decimal places&lt;/p&gt;

&lt;p&gt;The final formatted output is,&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_gjcuqf21d0-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_gjcuqf21d0-by-excel24x7.webp" title="Formatted Output" alt="Formatted Output" width="954" height="511"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Formatted Output&lt;/p&gt;

&lt;h2&gt;
  
  
  Formula To Convert Radians to Degrees:
&lt;/h2&gt;

&lt;p&gt;Similarly in Excel, the &lt;strong&gt;DEGREE&lt;/strong&gt; function directly converts a given &lt;strong&gt;radian value&lt;/strong&gt; into its equivalent &lt;strong&gt;degree values&lt;/strong&gt;.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=DEGREES(B4) &amp;amp; "°" // ° is added to print the output with Degree symbol.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Radians&lt;/th&gt;
&lt;th&gt;Degrees&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;0.35&lt;/td&gt;
&lt;td&gt;20.0535228295788°&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1.25&lt;/td&gt;
&lt;td&gt;71.6197243913529°&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2.1&lt;/td&gt;
&lt;td&gt;120.321136977473°&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;171.887338539247°&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;4.15&lt;/td&gt;
&lt;td&gt;237.777484979292°&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;5.4&lt;/td&gt;
&lt;td&gt;309.397209370645°&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;343.774677078494°&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;7&lt;/td&gt;
&lt;td&gt;401.070456591576°&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_wpgbfwhrat-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_wpgbfwhrat-by-excel24x7.webp" title="Converting Radian Values into Degrees using DEGREE Function" alt="Converting Radian Values into Degrees using DEGREE Function" width="1026" height="509"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Converting Radian Values into Degrees using DEGREE Function&lt;/p&gt;

&lt;p&gt;As shown in the image above, the &lt;strong&gt;DEGREES&lt;/strong&gt; function converts &lt;strong&gt;radian values&lt;/strong&gt; into &lt;strong&gt;degrees&lt;/strong&gt;. However, the result may display many decimal places, sometimes up to &lt;strong&gt;10 digits&lt;/strong&gt;. By using the ROUND Function or ROUNDDOWN Function, you can simplify the output to display the Degree values alone.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=ROUNDDOWN(DEGREES(A1), 0) &amp;amp; "°"  

or

=ROUND(DEGREES(A1), 0) &amp;amp; "°"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_nqttdgcbw6-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_nqttdgcbw6-by-excel24x7.webp" title="Rounded Degree Values using ROUND and ROUNDDOWN Function" alt="Rounded Degree Values using ROUND and ROUNDDOWN Function" width="1373" height="510"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Rounded Degree Values using ROUND and ROUNDDOWN Function&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Functions Used&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;RADIAN&lt;/td&gt;
&lt;td&gt;Convert angle from degrees to radians&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;DEGREE&lt;/td&gt;
&lt;td&gt;Convert angle from radians to degrees&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ROUND&lt;/td&gt;
&lt;td&gt;Round a number to a specified number of digits&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ROUNDDOWN&lt;/td&gt;
&lt;td&gt;Round a number &lt;strong&gt;down&lt;/strong&gt; towards zero&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;That’s it.&lt;/p&gt;

&lt;p&gt;–&lt;a href="https://excel24x7.com/creator/narendhiran-vijayakumar/" rel="noopener noreferrer"&gt;Narendhiran Vijayakumar&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Feel free to comment us below, if you have any queries about the above topic and find more interesting excel tutorials on our homepage: &lt;a href="https://excel24x7.com/" rel="noopener noreferrer"&gt;Excel24x7.com&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>excel</category>
      <category>office</category>
      <category>tips</category>
      <category>beginners</category>
    </item>
    <item>
      <title>How to Merge &amp; Combine Columns without Losing Data in Excel?</title>
      <dc:creator>Vigneshwaran Vijayakumar</dc:creator>
      <pubDate>Wed, 21 May 2025 03:07:00 +0000</pubDate>
      <link>https://forem.com/excel24x7/how-to-merge-combine-columns-without-losing-data-in-excel-3cd</link>
      <guid>https://forem.com/excel24x7/how-to-merge-combine-columns-without-losing-data-in-excel-3cd</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_ykjle6a2ra-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_ykjle6a2ra-by-excel24x7.webp" title="Merging cells only keeps the upper-left and discards other values issue in Excel." alt="Merging cells only keeps the upper-left and discards other values issue in Excel." width="1245" height="474"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Merging cells only keeps the upper-left and discards other values issue in Excel.&lt;/p&gt;

&lt;p&gt;The issue &lt;strong&gt;“Merging cells only keeps the upper-left value and discards others”&lt;/strong&gt; happens when you try to merge cells that contain more than one value. In this tutorial, I’ve explained &lt;strong&gt;all the methods&lt;/strong&gt; to combine data from &lt;strong&gt;multiple columns&lt;/strong&gt; without losing &lt;strong&gt;any information&lt;/strong&gt; from your sheet.&lt;/p&gt;

&lt;h2&gt;
  
  
  Method 1: Using Clipboard to Merge Columns into a One Cell
&lt;/h2&gt;

&lt;p&gt;The &lt;strong&gt;Clipboard method&lt;/strong&gt; allows users to &lt;strong&gt;combine multiple columns into one cell&lt;/strong&gt; easily. To use this method, you’ll need to open the &lt;strong&gt;Clipboard launcher&lt;/strong&gt; in Excel.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Under the &lt;strong&gt;HOME&lt;/strong&gt; tab in the left top of the sheet.&lt;/li&gt;
&lt;li&gt;  You may notice the word &lt;strong&gt;“Clipboard”&lt;/strong&gt; on the screen. Next to it, there is a small &lt;strong&gt;arrow icon&lt;/strong&gt;, which is the &lt;strong&gt;Clipboard Launcher&lt;/strong&gt;. Click on it to open the clipboard panel.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_3dlzi6qdn6-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_3dlzi6qdn6-by-excel24x7.webp" title="Clipboard Launcher in Excel" alt="Clipboard Launcher in Excel" width="906" height="352"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Clipboard Launcher in Excel&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Once the &lt;strong&gt;Clipboard launcher&lt;/strong&gt; is open, select the &lt;strong&gt;columns&lt;/strong&gt; you want to copy and press CTRL + C on your keyboard.&lt;/li&gt;
&lt;li&gt;  Now, the values from the selected columns are copied into the &lt;strong&gt;Clipboard launcher area&lt;/strong&gt;, as shown in the image below.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_jdqpghyzhs-by-excel24x7.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_jdqpghyzhs-by-excel24x7.gif" title="Values are copied into the clipboard launcher area." alt="Values are copied into the clipboard launcher area." width="1920" height="1018"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Values are copied into the clipboard launcher area.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Now, select the target cell. In this case, let’s choose &lt;strong&gt;cell F10&lt;/strong&gt;. Double-click on the cell to activate it, then press CTRL + V on your keyboard to &lt;strong&gt;paste the content&lt;/strong&gt; into the cell.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_e9e7pfsjre-by-excel24x7.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_e9e7pfsjre-by-excel24x7.gif" title="Pasting the cell values into the cells without losing it's contents" alt="Pasting the cell values into the cells without losing it's contents" width="1920" height="789"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Pasting the cell values into the cells without losing it’s contents&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  All values will now be added into the cell as one &lt;strong&gt;continuous block of text&lt;/strong&gt;. However, the &lt;strong&gt;cell’s formatting&lt;/strong&gt; and the &lt;strong&gt;formatting of its contents&lt;/strong&gt; will be completely removed.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2F74cafdac-eead-4102-ab8f-2ee5ae20c5f5-by-excel24x7-1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2F74cafdac-eead-4102-ab8f-2ee5ae20c5f5-by-excel24x7-1.png" title="How to Merge &amp;amp; Combine Columns without Losing Data in Excel?" alt="Before" width="545" height="187"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Before&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fbd6ec5d8-8ed7-4359-a6d6-fdda658d6347-by-excel24x7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fbd6ec5d8-8ed7-4359-a6d6-fdda658d6347-by-excel24x7.png" title="How to Merge &amp;amp; Combine Columns without Losing Data in Excel?" alt="After" width="545" height="187"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After&lt;/p&gt;

&lt;h2&gt;
  
  
  Method 2: Merge Using Excel Formulas:
&lt;/h2&gt;

&lt;p&gt;If you want to merge columns in Excel &lt;strong&gt;without losing any content&lt;/strong&gt;, you can use basic Excel features like the &lt;strong&gt;ampersand (&amp;amp;)&lt;/strong&gt; operator and other built-in Excel functions to do this easily.&lt;/p&gt;

&lt;h3&gt;
  
  
  Basic Merging Formula:
&lt;/h3&gt;

&lt;p&gt;The basic formula to merge multiple columns without losing its data is,&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=B4 &amp;amp; " " &amp;amp; C4 &amp;amp; " " &amp;amp; TEXT(D4, "dd-mm-yyyy")
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;By using the above formula, the contents from different columns will be &lt;strong&gt;combined with a space&lt;/strong&gt; between them. The &lt;strong&gt;TEXT&lt;/strong&gt; function is used to &lt;strong&gt;format the date&lt;/strong&gt; properly so that it appears in the correct &lt;strong&gt;Excel date format&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_15x7ybbbmd-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_15x7ybbbmd-by-excel24x7.webp" title="Basic Excel Formula to Merge Column without Losing its values." alt="Basic Excel Formula to Merge Column without Losing its values." width="1560" height="335"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Basic Excel Formula to Merge Column without Losing its values.&lt;/p&gt;

&lt;h3&gt;
  
  
  Merging With Space and Comma between the Values:
&lt;/h3&gt;

&lt;p&gt;In the above example, the formula adds only a &lt;strong&gt;space&lt;/strong&gt; between the contents. But in the example below, the formula adds a &lt;strong&gt;comma and a space&lt;/strong&gt; while combining values from multiple columns. You can &lt;strong&gt;replace the comma&lt;/strong&gt; with any other character or text based on your requirement.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=B4 &amp;amp; ", " &amp;amp; C4 &amp;amp; ", " &amp;amp; TEXT(D4, "dd-mm-yyyy")
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_26ftwtxgci-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_26ftwtxgci-by-excel24x7.webp" title="Excel Formula to Merge Columns separated by comma and spaces between the values." alt="Excel Formula to Merge Columns separated by comma and spaces between the values." width="1552" height="335"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Excel Formula to Merge Columns separated by comma and spaces between the values.&lt;/p&gt;

&lt;h2&gt;
  
  
  Method 3: Merge Multiple Columns Contents using Excel Functions
&lt;/h2&gt;

&lt;p&gt;You can merge columns and their values in Excel using functions like &lt;strong&gt;TEXTJOIN&lt;/strong&gt; or &lt;strong&gt;CONCAT&lt;/strong&gt;. If you are using an &lt;strong&gt;older version of Excel&lt;/strong&gt;, you can use the &lt;strong&gt;CONCATENATE&lt;/strong&gt; function to combine the contents instead.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Function&lt;/th&gt;
&lt;th&gt;It’s Purposes&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;TEXTJOIN&lt;/td&gt;
&lt;td&gt;Combines text from multiple cells using a delimiter, optionally ignoring blanks.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;CONCAT&lt;/td&gt;
&lt;td&gt;Joins text from multiple cells or ranges into one string (modern version).&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;CONCATENATE&lt;/td&gt;
&lt;td&gt;Joins text from multiple cells into one string (older version of CONCAT).&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The Formulas are,&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=TEXTJOIN(", ", TRUE, B4, C4, TEXT(D4, "dd-mm-yyyy"))

=CONCAT(B4, ", ", C4, ", ", TEXT(D4, "dd-mm-yyyy"))

=CONCATENATE(B4, ", ", C4, ", ", TEXT(D4, "dd-mm-yyyy")) //For older versions
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_mc8mnj3mft-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_mc8mnj3mft-by-excel24x7.webp" title="Merged Columns using Excel Functions" alt="Merged Columns using Excel Functions" width="1683" height="455"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Merged Columns using Excel Functions&lt;/p&gt;

&lt;p&gt;That’s it.&lt;/p&gt;

&lt;p&gt;–&lt;a href="https://excel24x7.com/creator/narendhiran-vijayakumar/" rel="noopener noreferrer"&gt;Narendhiran Vijayakumar&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Feel free to comment us below, if you have any queries about the above topic and find more interesting excel tutorials on our homepage: &lt;a href="https://excel24x7.com/" rel="noopener noreferrer"&gt;Excel24x7.com&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>excel</category>
      <category>office</category>
      <category>windows</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Excel File Options Shortcuts List &amp; It’s Explanations!</title>
      <dc:creator>Vigneshwaran Vijayakumar</dc:creator>
      <pubDate>Mon, 19 May 2025 15:12:00 +0000</pubDate>
      <link>https://forem.com/excel24x7/excel-file-options-shortcuts-list-its-explanations-3ama</link>
      <guid>https://forem.com/excel24x7/excel-file-options-shortcuts-list-its-explanations-3ama</guid>
      <description>&lt;p&gt;Here is a list of &lt;strong&gt;File Options shortcuts&lt;/strong&gt; available in the Excel application. These shortcuts can help you use Excel more &lt;strong&gt;quickly&lt;/strong&gt; and &lt;strong&gt;efficiently&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Create a New Workbook
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;To do&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Create a new workbook&lt;/td&gt;
&lt;td&gt;ctrl n&lt;/td&gt;
&lt;td&gt;⌘ N&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fcarnac_6svh6yey85-by-excel24x7.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fcarnac_6svh6yey85-by-excel24x7.gif" title="Using the Shortcut CTRL + N to create a New Workbook in Excel" alt="Using the Shortcut CTRL + N to create a New Workbook in Excel" width="1920" height="1017"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Using the Shortcut CTRL + N to create a New Workbook in Excel&lt;/p&gt;

&lt;p&gt;As shown in the image above, pressing the &lt;strong&gt;CTRL + N&lt;/strong&gt; keyboard shortcut in Excel creates a &lt;strong&gt;new workbook&lt;/strong&gt;. By default, a &lt;strong&gt;blank workbook&lt;/strong&gt; will be opened instantly when you use this shortcut.&lt;/p&gt;

&lt;h2&gt;
  
  
  Open a Workbook:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;To do&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to open a workbook&lt;/td&gt;
&lt;td&gt;ctrl o&lt;/td&gt;
&lt;td&gt;⌘ o&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fcarnac_isydrkwj1a-by-excel24x7.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fcarnac_isydrkwj1a-by-excel24x7.gif" title="Using the Shortcut CTRL + O to create Open a Workbook in Excel" alt="Using the Shortcut CTRL + O to create Open a Workbook in Excel" width="800" height="425"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Using the Shortcut CTRL + O to create Open a Workbook in Excel&lt;/p&gt;

&lt;p&gt;As shown in the image above, pressing the &lt;strong&gt;CTRL + O&lt;/strong&gt; keyboard shortcut in Excel opens a &lt;strong&gt;workbook&lt;/strong&gt;. You can choose the Excel file from the list of saved files.&lt;/p&gt;

&lt;h2&gt;
  
  
  Save a Workbook:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;To do&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to save a workbook&lt;/td&gt;
&lt;td&gt;ctrl s&lt;/td&gt;
&lt;td&gt;⌘ S&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fcarnac_qeyjiipjw9-by-excel24x7.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fcarnac_qeyjiipjw9-by-excel24x7.gif" title="Using the Shortcut CTRL + S to create Save a Workbook in Excel" alt="Using the Shortcut CTRL + S to create Save a Workbook in Excel" width="1920" height="1019"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Using the Shortcut CTRL + S to create Save a Workbook in Excel&lt;/p&gt;

&lt;p&gt;As shown in the image above, pressing the &lt;strong&gt;CTRL + S&lt;/strong&gt; keyboard shortcut in Excel saves a &lt;strong&gt;workbook&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Save as Workbook:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;To do&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Save as Workbook&lt;/td&gt;
&lt;td&gt;F12&lt;/td&gt;
&lt;td&gt;⌘ ⇧S&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fcarnac_uyv7hmjbgd-by-excel24x7.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fcarnac_uyv7hmjbgd-by-excel24x7.gif" title="Using the Shortcut F12 to create Save as a Workbook in Excel" alt="Using the Shortcut F12 to create Save as a Workbook in Excel" width="800" height="424"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Using the Shortcut F12 to create Save as a Workbook in Excel&lt;/p&gt;

&lt;p&gt;As shown in the image above, pressing the &lt;strong&gt;F12&lt;/strong&gt; keyboard shortcut in Excel save as a &lt;strong&gt;workbook&lt;/strong&gt;. You can choose the location and output filename of the Excel file.&lt;/p&gt;

&lt;h2&gt;
  
  
  Print a File:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;To do&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to print a file in Excel&lt;/td&gt;
&lt;td&gt;ctrl p&lt;/td&gt;
&lt;td&gt;⌘ P&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fcarnac_6jux7b5ynm-by-excel24x7.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fcarnac_6jux7b5ynm-by-excel24x7.gif" title="Using the Shortcut CTRL + P to create Print a Workbook in Excel" alt="Using the Shortcut CTRL + P to create Print a Workbook in Excel" width="760" height="403"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Using the Shortcut CTRL + P to create Print a Workbook in Excel&lt;/p&gt;

&lt;p&gt;As shown in the image above, pressing the &lt;strong&gt;CTRL + P&lt;/strong&gt; keyboard shortcut in Excel Print a &lt;strong&gt;workbook&lt;/strong&gt;. Once you done choosing the printing options, you can print the Excel documents easily.&lt;/p&gt;

&lt;h2&gt;
  
  
  Open a Print Preview Window:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;To do&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to open a print preview window in Excel&lt;/td&gt;
&lt;td&gt;ctrl F12&lt;/td&gt;
&lt;td&gt;Not Available&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fcarnac_u1zcysq13w-by-excel24x7.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fcarnac_u1zcysq13w-by-excel24x7.gif" title="Using the Shortcut CTRL + F12 to create Print a Workbook in Excel" alt="Using the Shortcut CTRL + F12 to create Print a Workbook in Excel" width="800" height="423"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Using the Shortcut CTRL + F12 to create Print a Workbook in Excel&lt;/p&gt;

&lt;p&gt;As shown in the image above, pressing the &lt;strong&gt;CTRL + F12&lt;/strong&gt; keyboard shortcut in Excel Open a Print Preview Window a &lt;strong&gt;workbook&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Close the Current Workbook:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;To do&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Close the current workbook&lt;/td&gt;
&lt;td&gt;ctrl F4&lt;/td&gt;
&lt;td&gt;⌘W&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fcarnac_nju5whzjgh-by-excel24x7.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fcarnac_nju5whzjgh-by-excel24x7.gif" title="Using the Shortcut CTRL + F4 to close a Workbook in Excel" alt="Using the Shortcut CTRL + F4 to close a Workbook in Excel" width="1920" height="1019"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Using the Shortcut CTRL + F4 to close a Workbook in Excel&lt;/p&gt;

&lt;p&gt;As shown in the image above, pressing the &lt;strong&gt;CTRL + F4&lt;/strong&gt; keyboard shortcut in Excel to close the current workbook.&lt;/p&gt;

&lt;h2&gt;
  
  
  Close Excel:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;To do&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Close Excel&lt;/td&gt;
&lt;td&gt;ALT F4&lt;/td&gt;
&lt;td&gt;⌘ Q&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fcarnac_7l6u3cmicb-by-excel24x7.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fcarnac_7l6u3cmicb-by-excel24x7.gif" title="Using the Shortcut ALT + F4 to close Excel application" alt="Using the Shortcut ALT + F4 to close Excel application" width="720" height="383"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Using the Shortcut ALT + F4 to close Excel application&lt;/p&gt;

&lt;p&gt;As shown in the image above, pressing the &lt;strong&gt;ALT + F4&lt;/strong&gt; keyboard shortcut in Excel to close the entire Excel Application.&lt;/p&gt;

&lt;p&gt;That’s it.&lt;/p&gt;

&lt;p&gt;–&lt;a href="https://excel24x7.com/creator/narendhiran-vijayakumar/" rel="noopener noreferrer"&gt;Narendhiran Vijayakumar&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Feel free to comment us below, if you have any queries about the above topic and find more interesting excel tutorials on our homepage: &lt;a href="https://excel24x7.com/" rel="noopener noreferrer"&gt;Excel24x7.com&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>excel</category>
      <category>tips</category>
      <category>windows</category>
      <category>office</category>
    </item>
    <item>
      <title>How to Use Excel YEAR Function?</title>
      <dc:creator>Vigneshwaran Vijayakumar</dc:creator>
      <pubDate>Tue, 13 May 2025 02:59:00 +0000</pubDate>
      <link>https://forem.com/excel24x7/how-to-use-excel-year-function-2no8</link>
      <guid>https://forem.com/excel24x7/how-to-use-excel-year-function-2no8</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_f32l3rb6qz-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_f32l3rb6qz-by-excel24x7.webp" title="Excel Year Function" alt="Excel Year Function" width="1589" height="536"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  YEAR Function: A Brief
&lt;/h2&gt;

&lt;p&gt;The &lt;strong&gt;YEAR function&lt;/strong&gt; in Excel is a simple yet powerful tool used to &lt;strong&gt;extract the year&lt;/strong&gt; from a given input date. This function is extremely useful when you are working with dates and need to separate or analyze the year part individually.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Objective&lt;/th&gt;
&lt;th&gt;Value Returned by function&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Aim to returns the year value&lt;/td&gt;
&lt;td&gt;YEAR function in excel will return year value in 4 digits from the given input date.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The YEAR function was introduced in &lt;strong&gt;Excel version 1.0&lt;/strong&gt;, which was released in &lt;strong&gt;1985&lt;/strong&gt; for Macintosh and &lt;strong&gt;1987&lt;/strong&gt; for Windows.&lt;/p&gt;

&lt;h2&gt;
  
  
  YEAR Function: Basic Syntax
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=YEAR(serial_number) // Serial_number or Excel Date Value
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;serial_number&lt;/strong&gt;: It refers to a valid Excel date from which you want to extract the year. If the serial_number value is a invalid date or a text value and then YEAR function will return the &lt;a href="https://excel24x7.com/excel-errors/value/" rel="noopener noreferrer"&gt;#VALUE!&lt;/a&gt; error.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The list of supported input formats that Excels YEAR function can handle as serial numbers:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; Date entered directly, &lt;code&gt;=YEAR("12/31/2023")&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt; Cell reference containing a date, &lt;code&gt;=YEAR(A1), where A1 = 01-Jan-2020&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt; Excel serial number, &lt;code&gt;=YEAR(44561) → returns 2022&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt; DATE function, &lt;code&gt;=YEAR(DATE(2022,5,10))&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt; DATEVALUE function, &lt;code&gt;=YEAR(DATEVALUE("July 1, 2021"))&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt; NOW() or TODAY(), &lt;code&gt;=YEAR(TODAY())&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt; Text date strings that Excel can recognize, &lt;code&gt;=YEAR("2022-03-15")&lt;/code&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Basic Example of Using YEAR Function:
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_5ecay9mwac-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_5ecay9mwac-by-excel24x7.webp" title="Basic Example of Using Excel YEAR Function" alt="Basic Example of Using Excel YEAR Function" width="1597" height="460"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Basic Example of Using Excel YEAR Function&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Input Date&lt;/th&gt;
&lt;th&gt;Output Year&lt;/th&gt;
&lt;th&gt;Comments&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;26-Feb-95&lt;/td&gt;
&lt;td&gt;1995&lt;/td&gt;
&lt;td&gt;YEAR function correctly extracts the year.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;29-Feb-16&lt;/td&gt;
&lt;td&gt;2016&lt;/td&gt;
&lt;td&gt;YEAR returns the leap year correctly.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;12345&lt;/td&gt;
&lt;td&gt;1933&lt;/td&gt;
&lt;td&gt;Excel interprets number as a serial date (Jan 18, 1933).&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1900&lt;/td&gt;
&lt;td&gt;1905&lt;/td&gt;
&lt;td&gt;Excel treats the number as Feb 28, 1905 and returns 1905.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;0&lt;/td&gt;
&lt;td&gt;1900&lt;/td&gt;
&lt;td&gt;Excel interprets 0 as Jan 0, 1900 and so returns the 1900.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;13/32/2022&lt;/td&gt;
&lt;td&gt;&lt;a href="https://excel24x7.com/excel-errors/value/" rel="noopener noreferrer"&gt;#VALUE!&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Input date is invalid and so YEAR function returns error!&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Not a date&lt;/td&gt;
&lt;td&gt;#VALUE!&lt;/td&gt;
&lt;td&gt;Text not recognized as a date and so YEAR function returns an error.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;=YEAR(“”)&lt;/td&gt;
&lt;td&gt;#VALUE!&lt;/td&gt;
&lt;td&gt;Empty string causes YEAR to return an error.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Formula Used&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;=YEAR(serial_number)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  Example Explanation:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;  In the &lt;strong&gt;first example&lt;/strong&gt;, the formula extracts the year from &lt;strong&gt;26-Feb-1995&lt;/strong&gt; and returns &lt;strong&gt;1995&lt;/strong&gt;, showing standard usage with a valid date.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;second example&lt;/strong&gt;, the formula is used with a &lt;strong&gt;leap day&lt;/strong&gt; (29-Feb-2016). The YEAR function correctly identifies the year as &lt;strong&gt;2016&lt;/strong&gt;, proving it handles leap years well.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;third example&lt;/strong&gt;, the input is a &lt;strong&gt;number (12345)&lt;/strong&gt;, which Excel interprets as a &lt;strong&gt;serial date&lt;/strong&gt; (Jan 18, 1933). The YEAR function then returns &lt;strong&gt;1933&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;fourth example&lt;/strong&gt;, the number &lt;strong&gt;1900&lt;/strong&gt; is treated as a serial date. Excel interprets it as &lt;strong&gt;Feb 28, 1905&lt;/strong&gt;, and the YEAR function returns &lt;strong&gt;1905&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;fifth example&lt;/strong&gt;, the input is &lt;strong&gt;0&lt;/strong&gt;, which Excel interprets as &lt;strong&gt;Jan 0, 1900&lt;/strong&gt;. The YEAR function returns &lt;strong&gt;1900&lt;/strong&gt; for this input.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;sixth example&lt;/strong&gt;, the date &lt;strong&gt;13/32/2022&lt;/strong&gt; is invalid. Since there is no 32nd day in any month, the YEAR function returns an error: &lt;strong&gt;#VALUE!&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;seventh example&lt;/strong&gt;, the input is &lt;strong&gt;“Not a date”&lt;/strong&gt;, a text string that Excel cannot recognize as a valid date. The YEAR function returns &lt;strong&gt;#VALUE!&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;eighth example&lt;/strong&gt;, the formula is &lt;strong&gt;=YEAR(“”)&lt;/strong&gt;. An empty string is not a valid input for date evaluation, so the function again returns &lt;strong&gt;#VALUE!&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Example of Using YEAR Function with Other Nested Functions:
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_72vgkizrqu-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_72vgkizrqu-by-excel24x7.webp" title="Examples of using YEAR Function with other Nested Functions" alt="Examples of using YEAR Function with other Nested Functions" width="1920" height="716"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Examples of using YEAR Function with other Nested Functions&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Input Date&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;29 August 1995&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;S.no&lt;/th&gt;
&lt;th&gt;Scenarios&lt;/th&gt;
&lt;th&gt;Output&lt;/th&gt;
&lt;th&gt;Formula Used&lt;/th&gt;
&lt;th&gt;Comments&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;Extract the year from the date&lt;/td&gt;
&lt;td&gt;1995&lt;/td&gt;
&lt;td&gt;=YEAR(B4)&lt;/td&gt;
&lt;td&gt;Basic use of YEAR function to extract year from B4&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;Check if the year is before 2000&lt;/td&gt;
&lt;td&gt;TRUE&lt;/td&gt;
&lt;td&gt;=YEAR(B4)&amp;lt;2000&lt;/td&gt;
&lt;td&gt;Returns TRUE since 1995 is before 2000&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;Get age based on current year&lt;/td&gt;
&lt;td&gt;30&lt;/td&gt;
&lt;td&gt;=YEAR(TODAY()) – YEAR(B4)&lt;/td&gt;
&lt;td&gt;Calculates age as of this year&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;Combine year with month name&lt;/td&gt;
&lt;td&gt;1995-August&lt;/td&gt;
&lt;td&gt;=YEAR(B4) &amp;amp; “-” &amp;amp; TEXT(B4,”mmmm”)&lt;/td&gt;
&lt;td&gt;Merges year and full month name&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;Get first day of the year&lt;/td&gt;
&lt;td&gt;01-Jan-95&lt;/td&gt;
&lt;td&gt;=&lt;a href="https://excel24x7.com/excel-functions/date-function/" rel="noopener noreferrer"&gt;DATE&lt;/a&gt;(YEAR(B4),1,1)&lt;/td&gt;
&lt;td&gt;Returns the first day of the same year&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;Get last day of the year&lt;/td&gt;
&lt;td&gt;31-Dec-95&lt;/td&gt;
&lt;td&gt;=DATE(YEAR(B4),12,31)&lt;/td&gt;
&lt;td&gt;Returns the last day of the same year&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;7&lt;/td&gt;
&lt;td&gt;Check if date is in leap year&lt;/td&gt;
&lt;td&gt;FALSE&lt;/td&gt;
&lt;td&gt;=IF(MOD(YEAR(B4),4)=0,IF(MOD(YEAR(B4),100)=0,MOD(YEAR(B4),400)=0,TRUE),FALSE)&lt;/td&gt;
&lt;td&gt;Returns FALSE – 1995 is not a leap year&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;8&lt;/td&gt;
&lt;td&gt;Convert to “Year Only” text format&lt;/td&gt;
&lt;td&gt;1995&lt;/td&gt;
&lt;td&gt;=TEXT(B4,”yyyy”)&lt;/td&gt;
&lt;td&gt;Returns year as a text string, useful for formatting&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;9&lt;/td&gt;
&lt;td&gt;Determine the decade&lt;/td&gt;
&lt;td&gt;1990&lt;/td&gt;
&lt;td&gt;=INT(YEAR(B4)/10)*10&lt;/td&gt;
&lt;td&gt;Calculates the decade by rounding down to the nearest 10&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;10&lt;/td&gt;
&lt;td&gt;Create a “Year-Quarter” label&lt;/td&gt;
&lt;td&gt;1995-Q3&lt;/td&gt;
&lt;td&gt;=YEAR(B4) &amp;amp; “-Q” &amp;amp; ROUNDUP(MONTH(B4)/3,0)&lt;/td&gt;
&lt;td&gt;Builds a label combining year and calendar quarter&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  Example Explanations:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;  In the &lt;strong&gt;first example&lt;/strong&gt;, the YEAR function is used with the date &lt;strong&gt;29 August 1995&lt;/strong&gt; (in cell &lt;strong&gt;B4&lt;/strong&gt;) and simply extracts the year. It returns &lt;strong&gt;1995&lt;/strong&gt;, which is the base usage of the function.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;second example&lt;/strong&gt;, the formula checks whether the extracted year is before 2000. Since &lt;strong&gt;1995 &amp;lt; 2000&lt;/strong&gt;, it returns &lt;strong&gt;TRUE&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;third example&lt;/strong&gt;, the formula subtracts the year in B4 from the current year using &lt;a href="https://excel24x7.com/excel-functions/year-function/" rel="noopener noreferrer"&gt;YEAR&lt;/a&gt;(&lt;a href="https://excel24x7.com/excel-functions/today-function/" rel="noopener noreferrer"&gt;TODAY&lt;/a&gt;()). If today is in 2025, it returns &lt;strong&gt;30&lt;/strong&gt;, representing the age.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;fourth example&lt;/strong&gt;, the formula combines the year with the full month name using the TEXT function. The result is &lt;strong&gt;“1995-August”&lt;/strong&gt;, a dynamic text label.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;fifth example&lt;/strong&gt;, the formula constructs the first day of the year by setting the month and day to January 1. It returns &lt;strong&gt;01-Jan-95&lt;/strong&gt;, showing how to build the year’s start date.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;sixth example&lt;/strong&gt;, the last day of the year is constructed similarly, using December 31. The output is &lt;strong&gt;31-Dec-95&lt;/strong&gt;, the final date of that year.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;seventh example&lt;/strong&gt;, the formula checks whether the year in B4 is a &lt;strong&gt;leap year&lt;/strong&gt;. Since &lt;strong&gt;1995 is not divisible by 4&lt;/strong&gt;, the formula returns &lt;strong&gt;FALSE&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;eighth example&lt;/strong&gt;, the formula formats the year as plain text using TEXT(B4,”yyyy”), returning &lt;strong&gt;“1995”&lt;/strong&gt;. This is useful for exporting or merging with other text fields.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;ninth example&lt;/strong&gt;, the formula calculates the &lt;strong&gt;decade&lt;/strong&gt; by removing the last digit and appending a 0, resulting in &lt;strong&gt;1990&lt;/strong&gt;, the decade to which the year belongs.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;tenth example&lt;/strong&gt;, the formula creates a &lt;strong&gt;“Year-Quarter”&lt;/strong&gt; label by dividing the month number by 3 and rounding up. Since August is in Q3, the formula returns &lt;strong&gt;“1995-Q3”&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s it.&lt;/p&gt;

&lt;p&gt;–&lt;a href="https://excel24x7.com/creator/narendhiran-vijayakumar/" rel="noopener noreferrer"&gt;Narendhiran Vijayakumar&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Feel free to comment us below, if you have any queries about the above topic and find more interesting excel tutorials on our homepage: &lt;a href="https://excel24x7.com/" rel="noopener noreferrer"&gt;Excel24x7.com&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>excel</category>
      <category>office</category>
      <category>tips</category>
      <category>windows</category>
    </item>
    <item>
      <title>How to Use Excel WEEKNUM Function?</title>
      <dc:creator>Vigneshwaran Vijayakumar</dc:creator>
      <pubDate>Sat, 10 May 2025 16:02:00 +0000</pubDate>
      <link>https://forem.com/excel24x7/how-to-use-excel-weeknum-function-2jbh</link>
      <guid>https://forem.com/excel24x7/how-to-use-excel-weeknum-function-2jbh</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_xp77fvp9uk-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_xp77fvp9uk-by-excel24x7.webp" title="How to Use Excel WEEKNUM Function?" alt="Excel WEEKNUM Function" width="914" height="641"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  WEEKNUM Function: A Brief
&lt;/h2&gt;

&lt;p&gt;The &lt;strong&gt;WEEKNUM&lt;/strong&gt; function in Excel is used to return the &lt;strong&gt;week number&lt;/strong&gt; from a given &lt;strong&gt;input date&lt;/strong&gt;. If the input is &lt;strong&gt;not a valid Excel date&lt;/strong&gt;, the function will return a &lt;strong&gt;&lt;a href="https://excel24x7.com/excel-errors/value/" rel="noopener noreferrer"&gt;#VALUE! error&lt;/a&gt;&lt;/strong&gt;. It will also return a &lt;strong&gt;#NUM! error&lt;/strong&gt; if the &lt;strong&gt;return_type&lt;/strong&gt; argument is not supported. The &lt;strong&gt;return_type&lt;/strong&gt; must be &lt;strong&gt;1, 2, or between 11 and 17&lt;/strong&gt;.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Objective&lt;/th&gt;
&lt;th&gt;Value Returned by function&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Aim to returns the week number&lt;/td&gt;
&lt;td&gt;WEEKNUM function in excel will return the relative week number to the given input date.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  WEEKNUM Function: A Syntax
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;=WEEKNUM(serial_number, [return_type])
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;serial_number&lt;/strong&gt;: The date you want to find the week number for.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;return_type&lt;/strong&gt;: A number that determines which day the week starts on. This is an optional one. By default the Excel will assumes Sunday as value 1.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The following is the difference between the WEEKNUM and ISOWEEKNUM function is,&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;strong&gt;WEEKNUM Function&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;ISOWEEKNUM Function&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Can start on Sunday (default) or Monday (based on return type)&lt;/td&gt;
&lt;td&gt;Always starts on Monday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Week 1 is the week containing January 1st&lt;/td&gt;
&lt;td&gt;Week 1 is the first week with at least 4 days (ISO 8601 rule)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Varies depending on chosen return type (1 or 2)&lt;/td&gt;
&lt;td&gt;Follows international ISO 8601 standard consistently&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Basic Example of Using WEEKNUM Function:
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_ttgserilkx-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_ttgserilkx-by-excel24x7.webp" title="Basic Example of Using WEEKNUM Function" alt="Basic Example of Using WEEKNUM Function" width="921" height="451"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Basic Example of Using WEEKNUM Function&lt;/p&gt;

&lt;p&gt;The example covers the variable scenarios of using WEEKNUM function in practical days.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Input Date&lt;/th&gt;
&lt;th&gt;Relative Day&lt;/th&gt;
&lt;th&gt;Output Result&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;15-Jan-25&lt;/td&gt;
&lt;td&gt;Wednesday&lt;/td&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;12-Feb-25&lt;/td&gt;
&lt;td&gt;Wednesday&lt;/td&gt;
&lt;td&gt;7&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;15-Mar-25&lt;/td&gt;
&lt;td&gt;Saturday&lt;/td&gt;
&lt;td&gt;11&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;10-Apr-25&lt;/td&gt;
&lt;td&gt;Thursday&lt;/td&gt;
&lt;td&gt;15&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;25-May-25&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;td&gt;22&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;15-13-2025&lt;/td&gt;
&lt;td&gt;15-13-2025&lt;/td&gt;
&lt;td&gt;#VALUE!&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;25-Dec-25&lt;/td&gt;
&lt;td&gt;Thursday&lt;/td&gt;
&lt;td&gt;52&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;01-Jan-26&lt;/td&gt;
&lt;td&gt;Thursday&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Formula Used for&lt;/th&gt;
&lt;th&gt;Formula&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Finding the Relative Day&lt;/td&gt;
&lt;td&gt;=TEXT(B4,”dddd”)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Finding the WEEK Number&lt;/td&gt;
&lt;td&gt;=WEEKNUM(B4)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;In the above example, the first five input dates are &lt;strong&gt;valid Excel dates&lt;/strong&gt;, so the &lt;strong&gt;WEEKNUM&lt;/strong&gt; function returns the correct results.&lt;/p&gt;

&lt;p&gt;However, the date &lt;strong&gt;15-13-2025&lt;/strong&gt; is &lt;strong&gt;not a valid date&lt;/strong&gt;, so the &lt;strong&gt;WEEKNUM&lt;/strong&gt; function returns a &lt;strong&gt;#VALUE!&lt;/strong&gt; error.&lt;/p&gt;

&lt;p&gt;For the next input, the formula used is &lt;code&gt;=WEEKNUM(B10, 99)&lt;/code&gt;. Since &lt;strong&gt;99&lt;/strong&gt; is &lt;strong&gt;not a valid return_type number&lt;/strong&gt;, the function is supposed to return a &lt;strong&gt;#NUM!&lt;/strong&gt; error. Otherwise, Excel may &lt;strong&gt;ignore the invalid return_type&lt;/strong&gt; and treat it as &lt;strong&gt;1&lt;/strong&gt;, and then return a normal result.&lt;/p&gt;

&lt;p&gt;A year has about 52 or 53 weeks depending on leap years. The below table contains the WEEKNUM value to the corresponding week range.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;strong&gt;WEEKNUM Value&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Approximate Dates (Range)&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;Jan 1 – Jan 7&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;Jan 8 – Jan 14&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;Jan 15 – Jan 21&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;Jan 22 – Jan 28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;Jan 29 – Feb 4&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;Feb 5 – Feb 11&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;7&lt;/td&gt;
&lt;td&gt;Feb 12 – Feb 18&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;8&lt;/td&gt;
&lt;td&gt;Feb 19 – Feb 25&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;9&lt;/td&gt;
&lt;td&gt;Feb 26 – Mar 3&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;10&lt;/td&gt;
&lt;td&gt;Mar 4 – Mar 10&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;11&lt;/td&gt;
&lt;td&gt;Mar 11 – Mar 17&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;12&lt;/td&gt;
&lt;td&gt;Mar 18 – Mar 24&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;13&lt;/td&gt;
&lt;td&gt;Mar 25 – Mar 31&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;14&lt;/td&gt;
&lt;td&gt;Apr 1 – Apr 7&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;15&lt;/td&gt;
&lt;td&gt;Apr 8 – Apr 14&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;16&lt;/td&gt;
&lt;td&gt;Apr 15 – Apr 21&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;17&lt;/td&gt;
&lt;td&gt;Apr 22 – Apr 28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;18&lt;/td&gt;
&lt;td&gt;Apr 29 – May 5&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;19&lt;/td&gt;
&lt;td&gt;May 6 – May 12&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;20&lt;/td&gt;
&lt;td&gt;May 13 – May 19&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;21&lt;/td&gt;
&lt;td&gt;May 20 – May 26&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;22&lt;/td&gt;
&lt;td&gt;May 27 – Jun 2&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;23&lt;/td&gt;
&lt;td&gt;Jun 3 – Jun 9&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;24&lt;/td&gt;
&lt;td&gt;Jun 10 – Jun 16&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;25&lt;/td&gt;
&lt;td&gt;Jun 17 – Jun 23&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;26&lt;/td&gt;
&lt;td&gt;Jun 24 – Jun 30&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;27&lt;/td&gt;
&lt;td&gt;Jul 1 – Jul 7&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;28&lt;/td&gt;
&lt;td&gt;Jul 8 – Jul 14&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;29&lt;/td&gt;
&lt;td&gt;Jul 15 – Jul 21&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;30&lt;/td&gt;
&lt;td&gt;Jul 22 – Jul 28&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;31&lt;/td&gt;
&lt;td&gt;Jul 29 – Aug 4&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;32&lt;/td&gt;
&lt;td&gt;Aug 5 – Aug 11&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;33&lt;/td&gt;
&lt;td&gt;Aug 12 – Aug 18&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;34&lt;/td&gt;
&lt;td&gt;Aug 19 – Aug 25&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;35&lt;/td&gt;
&lt;td&gt;Aug 26 – Sep 1&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;36&lt;/td&gt;
&lt;td&gt;Sep 2 – Sep 8&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;37&lt;/td&gt;
&lt;td&gt;Sep 9 – Sep 15&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;38&lt;/td&gt;
&lt;td&gt;Sep 16 – Sep 22&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;39&lt;/td&gt;
&lt;td&gt;Sep 23 – Sep 29&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;40&lt;/td&gt;
&lt;td&gt;Sep 30 – Oct 6&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;41&lt;/td&gt;
&lt;td&gt;Oct 7 – Oct 13&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;42&lt;/td&gt;
&lt;td&gt;Oct 14 – Oct 20&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;43&lt;/td&gt;
&lt;td&gt;Oct 21 – Oct 27&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;44&lt;/td&gt;
&lt;td&gt;Oct 28 – Nov 3&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;45&lt;/td&gt;
&lt;td&gt;Nov 4 – Nov 10&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;46&lt;/td&gt;
&lt;td&gt;Nov 11 – Nov 17&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;47&lt;/td&gt;
&lt;td&gt;Nov 18 – Nov 24&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;48&lt;/td&gt;
&lt;td&gt;Nov 25 – Dec 1&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;49&lt;/td&gt;
&lt;td&gt;Dec 2 – Dec 8&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;50&lt;/td&gt;
&lt;td&gt;Dec 9 – Dec 15&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;51&lt;/td&gt;
&lt;td&gt;Dec 16 – Dec 22&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;52&lt;/td&gt;
&lt;td&gt;Dec 23 – Dec 29&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;53 (if any)&lt;/td&gt;
&lt;td&gt;Dec 30 – Dec 31 (only sometimes)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;If the year is a leap year and then,&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;WEEKNUM&lt;/th&gt;
&lt;th&gt;Approximate Dates&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;8&lt;/td&gt;
&lt;td&gt;Feb 18 – Feb 24&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;9&lt;/td&gt;
&lt;td&gt;Feb 25 – Mar 2&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;This WEEKNUM function returns different &lt;strong&gt;return types&lt;/strong&gt; for WEEKNUM(), and each one decides which day the week starts. Refer to the table below:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;strong&gt;Return Type&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Week Starts On&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Comments&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;td&gt;Default system, weeks start on Sunday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;Monday&lt;/td&gt;
&lt;td&gt;European system, weeks start on Monday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;11&lt;/td&gt;
&lt;td&gt;Monday&lt;/td&gt;
&lt;td&gt;
&lt;a href="https://en.wikipedia.org/wiki/ISO_week_date" rel="noopener noreferrer"&gt;ISO standard&lt;/a&gt; variant, weeks start on Monday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;12&lt;/td&gt;
&lt;td&gt;Tuesday&lt;/td&gt;
&lt;td&gt;Weeks start on Tuesday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;13&lt;/td&gt;
&lt;td&gt;Wednesday&lt;/td&gt;
&lt;td&gt;Weeks start on Wednesday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;14&lt;/td&gt;
&lt;td&gt;Thursday&lt;/td&gt;
&lt;td&gt;Weeks start on Thursday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;15&lt;/td&gt;
&lt;td&gt;Friday&lt;/td&gt;
&lt;td&gt;Weeks start on Friday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;16&lt;/td&gt;
&lt;td&gt;Saturday&lt;/td&gt;
&lt;td&gt;Weeks start on Saturday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;17&lt;/td&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;td&gt;
&lt;a href="https://en.wikipedia.org/wiki/ISO_week_date" rel="noopener noreferrer"&gt;ISO standard&lt;/a&gt; where week 1 is the first week with at least 4 days&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Using WEEKNUM Function With Other Nested Functions:
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_hicvvpwueu-by-excel24x7.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fexcel24x7.com%2Fwp-content%2Fuploads%2Fexcel_hicvvpwueu-by-excel24x7.webp" title="Using WEEKNUM Function with Other Nested Function" alt="Using WEEKNUM Function with Other Nested Function" width="1920" height="716"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Using WEEKNUM Function with Other Nested Functions&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Input Date:&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;10-Apr-25&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;strong&gt;Scenarios&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Formula Used&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Output&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Comments&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Simple WEEKNUM Usage&lt;/td&gt;
&lt;td&gt;=WEEKNUM(B4)&lt;/td&gt;
&lt;td&gt;15&lt;/td&gt;
&lt;td&gt;Week number based on default (week starts Sunday)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;WEEKNUM with Monday Start&lt;/td&gt;
&lt;td&gt;=WEEKNUM(B4,2)&lt;/td&gt;
&lt;td&gt;15&lt;/td&gt;
&lt;td&gt;Week number assuming week starts on Monday&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Check if Week is Even or Odd&lt;/td&gt;
&lt;td&gt;=IF(MOD(WEEKNUM(B4),2)=0,”Even”,”Odd”)&lt;/td&gt;
&lt;td&gt;Odd&lt;/td&gt;
&lt;td&gt;Shows if the week number is even or odd&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Using WEEKNUM Function with TODAY Function&lt;/td&gt;
&lt;td&gt;=WEEKNUM(TODAY())&lt;/td&gt;
&lt;td&gt;18&lt;/td&gt;
&lt;td&gt;Shows current week’s number based on today’s date&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Calculate Weeks Left in Year&lt;/td&gt;
&lt;td&gt;=52-WEEKNUM(B4)&lt;/td&gt;
&lt;td&gt;37&lt;/td&gt;
&lt;td&gt;How many weeks are left in the year 2025&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Highlight if given date lies in Q2&lt;/td&gt;
&lt;td&gt;=IF(AND(WEEKNUM(B4)&amp;gt;=14,WEEKNUM(B4)&amp;lt;=26),”Q2″,”Not Q2″)&lt;/td&gt;
&lt;td&gt;Q2&lt;/td&gt;
&lt;td&gt;Checks if date falls into Quarter 2&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Add 4 Weeks to Current Date&lt;/td&gt;
&lt;td&gt;=B4+WEEKNUM(B4)*7/4&lt;/td&gt;
&lt;td&gt;06 May 2025&lt;/td&gt;
&lt;td&gt;Adds approximately 1/4th of the week span&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Find Month from WEEKNUM&lt;/td&gt;
&lt;td&gt;=MONTH(B4)&lt;/td&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;Displays month number, April is month 4&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Custom Text for Early or Late Year&lt;/td&gt;
&lt;td&gt;=IF(WEEKNUM(B4)&amp;lt;26,”First Half”,”Second Half”)&lt;/td&gt;
&lt;td&gt;First Half&lt;/td&gt;
&lt;td&gt;Classify date as First or Second half of the year&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Combine Week Number and Year&lt;/td&gt;
&lt;td&gt;=YEAR(B4)&amp;amp;”-W”&amp;amp;TEXT(WEEKNUM(B4),”00″)&lt;/td&gt;
&lt;td&gt;2025-W15&lt;/td&gt;
&lt;td&gt;Year-Week number format&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  Example Explanation:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;  In the &lt;strong&gt;first example&lt;/strong&gt;, the &lt;strong&gt;WEEKNUM&lt;/strong&gt; function is used with the date &lt;strong&gt;April 10, 2025 (10-Apr-2025)&lt;/strong&gt; in cell &lt;strong&gt;B4&lt;/strong&gt;. It calculates the week number assuming &lt;strong&gt;Sunday&lt;/strong&gt; as the first day of the week and returns &lt;strong&gt;15&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;second example&lt;/strong&gt;, the formula calculates the week number assuming &lt;strong&gt;Monday&lt;/strong&gt; as the first day of the week. It also returns &lt;strong&gt;15&lt;/strong&gt; for the same date.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;third example&lt;/strong&gt;, the formula checks if the week number is &lt;strong&gt;even or odd&lt;/strong&gt;. Since &lt;strong&gt;15&lt;/strong&gt; is an odd number, it returns &lt;strong&gt;“Odd”&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;fourth example&lt;/strong&gt;, the formula dynamically calculates the &lt;strong&gt;current week’s number&lt;/strong&gt; based on &lt;strong&gt;today’s date&lt;/strong&gt;. The result will automatically &lt;strong&gt;update each day&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;fifth example&lt;/strong&gt;, the formula subtracts the &lt;strong&gt;current week number&lt;/strong&gt; from &lt;strong&gt;52&lt;/strong&gt; to find out &lt;strong&gt;how many weeks are left&lt;/strong&gt; in the year. For &lt;strong&gt;April 10, 2025&lt;/strong&gt;, it returns &lt;strong&gt;37 weeks remaining&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;sixth example&lt;/strong&gt;, the formula checks whether the week falls in &lt;strong&gt;Quarter 2&lt;/strong&gt;. Since &lt;strong&gt;week 15&lt;/strong&gt; falls between &lt;strong&gt;week 14 and 26&lt;/strong&gt;, it returns &lt;strong&gt;“Q2”&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;seventh example&lt;/strong&gt;, the formula adds about &lt;strong&gt;one-fourth of a week’s span&lt;/strong&gt; to the current date, resulting in &lt;strong&gt;May 6, 2025 (06-May-2025)&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;eighth example&lt;/strong&gt;, the formula extracts the &lt;strong&gt;month number&lt;/strong&gt; from the date. Since April is the &lt;strong&gt;fourth month&lt;/strong&gt;, it returns &lt;strong&gt;4&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;ninth example&lt;/strong&gt;, the formula classifies the date into either the &lt;strong&gt;First Half&lt;/strong&gt; or &lt;strong&gt;Second Half&lt;/strong&gt; of the year based on its week number. &lt;strong&gt;April 10, 2025&lt;/strong&gt; falls in the &lt;strong&gt;First Half&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  In the &lt;strong&gt;tenth example&lt;/strong&gt;, the formula combines the &lt;strong&gt;year&lt;/strong&gt; and the &lt;strong&gt;week number&lt;/strong&gt; into a custom format like &lt;strong&gt;2025-W15&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Functions Used in the Examples:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;strong&gt;Function&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Used for&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;WEEKNUM&lt;/td&gt;
&lt;td&gt;Returns the week number of a date&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;IF&lt;/td&gt;
&lt;td&gt;Performs logical checks to return different values based on a condition&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MOD&lt;/td&gt;
&lt;td&gt;Returns the remainder after a number is divided by a divisor (used to find even/odd)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;TODAY&lt;/td&gt;
&lt;td&gt;Returns the current date without time&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AND&lt;/td&gt;
&lt;td&gt;Checks if multiple conditions are TRUE&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;TEXT&lt;/td&gt;
&lt;td&gt;Formats numbers/dates as text in a specified format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;YEAR&lt;/td&gt;
&lt;td&gt;Extracts the year from a date value&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MONTH&lt;/td&gt;
&lt;td&gt;Extracts the month number from a date value&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;That’s it.&lt;/p&gt;

&lt;p&gt;–&lt;a href="https://excel24x7.com/creator/narendhiran-vijayakumar/" rel="noopener noreferrer"&gt;Narendhiran Vijayakumar&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Feel free to comment us below, if you have any queries about the above topic and find more interesting excel tutorials on our homepage: &lt;a href="https://excel24x7.com/" rel="noopener noreferrer"&gt;Excel24x7.com&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>excel</category>
      <category>office</category>
      <category>windows</category>
      <category>tips</category>
    </item>
    <item>
      <title>{230+} Excel SHORTCUTS List for Windows &amp; MAC</title>
      <dc:creator>Vigneshwaran Vijayakumar</dc:creator>
      <pubDate>Thu, 08 May 2025 07:58:00 +0000</pubDate>
      <link>https://forem.com/excel24x7/230-excel-shortcuts-list-for-windows-mac-72i</link>
      <guid>https://forem.com/excel24x7/230-excel-shortcuts-list-for-windows-mac-72i</guid>
      <description>&lt;p&gt;In this tutorial, you’ll find a &lt;strong&gt;complete and updated list of Excel shortcuts&lt;/strong&gt; to help you work more efficiently. From basic navigation to advanced data operations, this tutorial covers everything you need. It includes shortcuts for both &lt;strong&gt;Windows&lt;/strong&gt; and &lt;strong&gt;Mac&lt;/strong&gt; users. You can &lt;strong&gt;bookmark the page&lt;/strong&gt; for quick access or &lt;strong&gt;&lt;a href="https://excel24x7.com/wp-content/uploads/Excel-Shortcuts.pdf" rel="noopener noreferrer"&gt;download the PDF version&lt;/a&gt;&lt;/strong&gt; of the shortcuts list.&lt;/p&gt;

&lt;h2&gt;
  
  
  File Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Create a new workbook&lt;/td&gt;
&lt;td&gt;ctrl n&lt;/td&gt;
&lt;td&gt;⌘ N&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to open a workbook&lt;/td&gt;
&lt;td&gt;ctrl o&lt;/td&gt;
&lt;td&gt;⌘ o&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to save a workbook&lt;/td&gt;
&lt;td&gt;ctrl s&lt;/td&gt;
&lt;td&gt;⌘ S&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Save as Workbook&lt;/td&gt;
&lt;td&gt;F12&lt;/td&gt;
&lt;td&gt;⌘ ⇧S&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to print a file in Excel&lt;/td&gt;
&lt;td&gt;ctrl p&lt;/td&gt;
&lt;td&gt;⌘ P&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to open a print preview window in Excel&lt;/td&gt;
&lt;td&gt;ctrl F12&lt;/td&gt;
&lt;td&gt;Not Available&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Close the current workbook&lt;/td&gt;
&lt;td&gt;ctrl F4&lt;/td&gt;
&lt;td&gt;⌘W&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Close Excel&lt;/td&gt;
&lt;td&gt;ALT F4&lt;/td&gt;
&lt;td&gt;⌘ Q&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Ribbon Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Expand or collapse the ribbon&lt;/td&gt;
&lt;td&gt;ctrl F1&lt;/td&gt;
&lt;td&gt;⌘ ⌥ R&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Activate access keys&lt;/td&gt;
&lt;td&gt;ALT&lt;/td&gt;
&lt;td&gt;Not Available&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move to next ribbon control&lt;/td&gt;
&lt;td&gt;Tab&lt;/td&gt;
&lt;td&gt;Tab&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Activate or open selected control&lt;/td&gt;
&lt;td&gt;Space&lt;/td&gt;
&lt;td&gt;Space&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Confirm control change&lt;/td&gt;
&lt;td&gt;Enter&lt;/td&gt;
&lt;td&gt;Return&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Get help on the selected control&lt;/td&gt;
&lt;td&gt;F1&lt;/td&gt;
&lt;td&gt;Not Available&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  General Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to open options in Excel&lt;/td&gt;
&lt;td&gt;ALT F T&lt;/td&gt;
&lt;td&gt;⌘ ,&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to undo the last action in Excel&lt;/td&gt;
&lt;td&gt;ctrl z&lt;/td&gt;
&lt;td&gt;⌘ Z&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to redo the last action in Excel&lt;/td&gt;
&lt;td&gt;ctrl y&lt;/td&gt;
&lt;td&gt;⌘ Y&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to copy selected cells in Excel&lt;/td&gt;
&lt;td&gt;ctrl c&lt;/td&gt;
&lt;td&gt;⌘ C&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to repeat the last action in Excel&lt;/td&gt;
&lt;td&gt;f4&lt;/td&gt;
&lt;td&gt;⌘ Y&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to cut selected cells in Excel&lt;/td&gt;
&lt;td&gt;ctrl X&lt;/td&gt;
&lt;td&gt;⌘ X&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to paste content from clipboard in Excel&lt;/td&gt;
&lt;td&gt;ctrl v&lt;/td&gt;
&lt;td&gt;⌘ V&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to display the paste special dialog box in Excel&lt;/td&gt;
&lt;td&gt;ctrl ALT V&lt;/td&gt;
&lt;td&gt;⌘ ⌃ V&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to display find and replace in Excel&lt;/td&gt;
&lt;td&gt;ctrl f&lt;/td&gt;
&lt;td&gt;⌘ F&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to display find and replace, replace selected in Excel&lt;/td&gt;
&lt;td&gt;ctrl h&lt;/td&gt;
&lt;td&gt;⌃ H&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Find the previous match in Excel&lt;/td&gt;
&lt;td&gt;ctrl shift f4&lt;/td&gt;
&lt;td&gt;⌘ ⇧ G&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Find the next match in Excel&lt;/td&gt;
&lt;td&gt;Shift f4&lt;/td&gt;
&lt;td&gt;⌘ G&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Create an embedded chart in Excel&lt;/td&gt;
&lt;td&gt;Alt f1&lt;/td&gt;
&lt;td&gt;Fn ⌥ F1&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Create a chart in a new worksheet in Excel&lt;/td&gt;
&lt;td&gt;f11&lt;/td&gt;
&lt;td&gt;Fn F11&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Table &amp;amp; Filters Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to insert a table in Excel&lt;/td&gt;
&lt;td&gt;ctrl t&lt;/td&gt;
&lt;td&gt;⌃ T&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to toggle auto filter in Excel&lt;/td&gt;
&lt;td&gt;ctrl shift l&lt;/td&gt;
&lt;td&gt;⌘ ⇧ F&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to activate filter in Excel&lt;/td&gt;
&lt;td&gt;Alt ↓&lt;/td&gt;
&lt;td&gt;⌥ ↓&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to select a table row in Excel&lt;/td&gt;
&lt;td&gt;shift space&lt;/td&gt;
&lt;td&gt;⇧ Space&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to select the table column in Excel&lt;/td&gt;
&lt;td&gt;ctrl Space&lt;/td&gt;
&lt;td&gt;⌃ Space&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to select a table in Excel&lt;/td&gt;
&lt;td&gt;ctrl a&lt;/td&gt;
&lt;td&gt;⌘ A&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to clear the slicer filter in Excel&lt;/td&gt;
&lt;td&gt;alt c&lt;/td&gt;
&lt;td&gt;⌥ C&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to toggle table total row in Excel&lt;/td&gt;
&lt;td&gt;ctrl shift t&lt;/td&gt;
&lt;td&gt;⌘ ⇧ T&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Drag &amp;amp; Drop Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Drag and cut in Excel&lt;/td&gt;
&lt;td&gt;drag&lt;/td&gt;
&lt;td&gt;Drag&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Drag and copy in Excel&lt;/td&gt;
&lt;td&gt;ctrl drag&lt;/td&gt;
&lt;td&gt;⌥ Drag&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Drag &amp;amp; Insert in Excel&lt;/td&gt;
&lt;td&gt;shift drag&lt;/td&gt;
&lt;td&gt;⇧ Drag&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Drag and insert copy in Excel&lt;/td&gt;
&lt;td&gt;ctrl shift drag&lt;/td&gt;
&lt;td&gt;⌥ ⇧ Drag&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Drag to a worksheet in Excel&lt;/td&gt;
&lt;td&gt;ctrl drag&lt;/td&gt;
&lt;td&gt;⌥ Drag&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Drag to duplicate worksheet in Excel&lt;/td&gt;
&lt;td&gt;alt drag&lt;/td&gt;
&lt;td&gt;⌘ Drag&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Navigation Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Move one cell right in Excel&lt;/td&gt;
&lt;td&gt;→&lt;/td&gt;
&lt;td&gt;→&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move one cell left in Excel&lt;/td&gt;
&lt;td&gt;←&lt;/td&gt;
&lt;td&gt;←&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move one cell up in Excel&lt;/td&gt;
&lt;td&gt;↑&lt;/td&gt;
&lt;td&gt;↑&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move one cell down in Excel&lt;/td&gt;
&lt;td&gt;↓&lt;/td&gt;
&lt;td&gt;↓&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move one screen right in Excel&lt;/td&gt;
&lt;td&gt;alt Pg.Dn&lt;/td&gt;
&lt;td&gt;Fn ⌥↓&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move one screen left in Excel&lt;/td&gt;
&lt;td&gt;alt Pg.up&lt;/td&gt;
&lt;td&gt;Fn ⌥↑&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move one screen up in Excel&lt;/td&gt;
&lt;td&gt;PG.Up&lt;/td&gt;
&lt;td&gt;Fn ↑&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move one screen down in Excel&lt;/td&gt;
&lt;td&gt;PG.Dn&lt;/td&gt;
&lt;td&gt;Fn ↓&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move to the right edge of the data region in Excel&lt;/td&gt;
&lt;td&gt;Ctrl →&lt;/td&gt;
&lt;td&gt;⌃ →&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move to the left edge of the data region in Excel&lt;/td&gt;
&lt;td&gt;Ctrl ←&lt;/td&gt;
&lt;td&gt;⌃ ←&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move to the top edge of the data region in Excel&lt;/td&gt;
&lt;td&gt;Ctrl↑&lt;/td&gt;
&lt;td&gt;⌃ ↑&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move to the bottom edge of the data region in Excel&lt;/td&gt;
&lt;td&gt;Ctrl ↓&lt;/td&gt;
&lt;td&gt;⌃ ↓&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move to the beginning of a row in Excel&lt;/td&gt;
&lt;td&gt;Home&lt;/td&gt;
&lt;td&gt;Fn ←&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move to the last cell in a worksheet in Excel&lt;/td&gt;
&lt;td&gt;ctrlend&lt;/td&gt;
&lt;td&gt;Fn ⌃→&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move to the first cell in a worksheet in Excel&lt;/td&gt;
&lt;td&gt;ctrlHome&lt;/td&gt;
&lt;td&gt;Fn ⌃←&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Turn End mode on in Excel&lt;/td&gt;
&lt;td&gt;End&lt;/td&gt;
&lt;td&gt;Fn →&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Go back to hyperlink in Excel&lt;/td&gt;
&lt;td&gt;ctrlGEnter&lt;/td&gt;
&lt;td&gt;⌃ GReturn&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Selection Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Select an entire row in Excel&lt;/td&gt;
&lt;td&gt;shiftspace&lt;/td&gt;
&lt;td&gt;⇧Space&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select an entire column in Excel&lt;/td&gt;
&lt;td&gt;ctrlspace&lt;/td&gt;
&lt;td&gt;⌃Space&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select entire worksheet in Excel&lt;/td&gt;
&lt;td&gt;ctrla&lt;/td&gt;
&lt;td&gt;⌘A&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Add adjacent cells to selection in Excel&lt;/td&gt;
&lt;td&gt;ShiftClick&lt;/td&gt;
&lt;td&gt;⇧Click&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Add non-adjacent cells to selection in Excel&lt;/td&gt;
&lt;td&gt;ctrlClick&lt;/td&gt;
&lt;td&gt;⌘Click&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Same selection in next column in Excel&lt;/td&gt;
&lt;td&gt;Nil&lt;/td&gt;
&lt;td&gt;⌥Tab&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Same selection in the previous column in Excel&lt;/td&gt;
&lt;td&gt;Nil&lt;/td&gt;
&lt;td&gt;⌥⇧Tab&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move right between non-adjacent selections in Excel&lt;/td&gt;
&lt;td&gt;ctrlalt→&lt;/td&gt;
&lt;td&gt;⌃⌥→&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move left between non-adjacent selections in Excel&lt;/td&gt;
&lt;td&gt;ctrlalt←&lt;/td&gt;
&lt;td&gt;⌃⌥←&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Toggle add to selection mode in Excel&lt;/td&gt;
&lt;td&gt;shiftf8&lt;/td&gt;
&lt;td&gt;Fn⇧F8&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Cancel selection in Excel&lt;/td&gt;
&lt;td&gt;Esc&lt;/td&gt;
&lt;td&gt;Esc&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Active Cell Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Select an active cell only in Excel&lt;/td&gt;
&lt;td&gt;shiftBackspace&lt;/td&gt;
&lt;td&gt;⇧Delete&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Show the active cell on a worksheet in Excel&lt;/td&gt;
&lt;td&gt;ctrlBackspace&lt;/td&gt;
&lt;td&gt;⌘Delete&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move active cell clockwise in selection in Excel&lt;/td&gt;
&lt;td&gt;ctrl.&lt;/td&gt;
&lt;td&gt;⌃.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move active cell down in selection in Excel&lt;/td&gt;
&lt;td&gt;Enter&lt;/td&gt;
&lt;td&gt;Return&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move active cell up in selection in Excel&lt;/td&gt;
&lt;td&gt;shiftenter&lt;/td&gt;
&lt;td&gt;⇧Return&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move active cell right in a selection in Excel&lt;/td&gt;
&lt;td&gt;tab&lt;/td&gt;
&lt;td&gt;Tab&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move active cell left in a selection in Excel&lt;/td&gt;
&lt;td&gt;shifttab&lt;/td&gt;
&lt;td&gt;⇧Tab&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Extend Selection Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Extend selection by one cell right in Excel&lt;/td&gt;
&lt;td&gt;shift→&lt;/td&gt;
&lt;td&gt;⇧→&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Extend selection by one cell left in Excel&lt;/td&gt;
&lt;td&gt;shift←&lt;/td&gt;
&lt;td&gt;⇧←&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Extend selection by one cell up in Excel&lt;/td&gt;
&lt;td&gt;shift↑&lt;/td&gt;
&lt;td&gt;⇧↑&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Extend selection by one cell down in Excel&lt;/td&gt;
&lt;td&gt;shift↓&lt;/td&gt;
&lt;td&gt;⇧↓&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Extend the selection to the last cell right in Excel&lt;/td&gt;
&lt;td&gt;ctrlshift→&lt;/td&gt;
&lt;td&gt;⌃⇧→&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Extend the selection to the last cell left in Excel&lt;/td&gt;
&lt;td&gt;ctrlshift←&lt;/td&gt;
&lt;td&gt;⌃⇧←&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Extend the selection to the last cell up in Excel&lt;/td&gt;
&lt;td&gt;ctrlshift↑&lt;/td&gt;
&lt;td&gt;⌃⇧↑&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Extend the selection to the last cell down in Excel&lt;/td&gt;
&lt;td&gt;ctrlshift↓&lt;/td&gt;
&lt;td&gt;⌃⇧↓&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Extend selection up one screen in Excel&lt;/td&gt;
&lt;td&gt;shiftpg.up&lt;/td&gt;
&lt;td&gt;Fn⇧↑&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Extend selection down one screen in Excel&lt;/td&gt;
&lt;td&gt;shiftpg.dn&lt;/td&gt;
&lt;td&gt;Fn⇧↓&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Extend selection right one screen in Excel&lt;/td&gt;
&lt;td&gt;altshiftpg.dn&lt;/td&gt;
&lt;td&gt;Fn⇧⌥↓&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Extend selection left one screen in Excel&lt;/td&gt;
&lt;td&gt;altshiftpg.up&lt;/td&gt;
&lt;td&gt;Fn⇧⌥↑&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Extend selection to start of the row in Excel&lt;/td&gt;
&lt;td&gt;shifthome&lt;/td&gt;
&lt;td&gt;Fn⇧←&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Extend selection to the first cell in a worksheet in Excel&lt;/td&gt;
&lt;td&gt;ctrlshifthome&lt;/td&gt;
&lt;td&gt;Fn⌃⇧←&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Extend selection to last cell in the worksheet in Excel&lt;/td&gt;
&lt;td&gt;ctrlshiftend&lt;/td&gt;
&lt;td&gt;Fn⌃⇧→&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Toggle extend selection mode in Excel&lt;/td&gt;
&lt;td&gt;f8&lt;/td&gt;
&lt;td&gt;FnF8&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Select Special Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Display ‘Go-To’ dialog box in Excel&lt;/td&gt;
&lt;td&gt;ctrlg&lt;/td&gt;
&lt;td&gt;⌃G&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select cells with comments in Excel&lt;/td&gt;
&lt;td&gt;ctrlshifto&lt;/td&gt;
&lt;td&gt;Fn⌃⇧O&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select the current region around the active cell in Excel&lt;/td&gt;
&lt;td&gt;ctrlshift*&lt;/td&gt;
&lt;td&gt;⇧⌃Space&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select the current region in Excel&lt;/td&gt;
&lt;td&gt;ctrla&lt;/td&gt;
&lt;td&gt;⌘A&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select the current array in Excel&lt;/td&gt;
&lt;td&gt;ctrl/&lt;/td&gt;
&lt;td&gt;⌃/&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select row differences in Excel&lt;/td&gt;
&lt;td&gt;ctrl\&lt;/td&gt;
&lt;td&gt;⌃\&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select column differences in Excel&lt;/td&gt;
&lt;td&gt;ctrlshift\&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select direct precedents in Excel&lt;/td&gt;
&lt;td&gt;ctrl[&lt;/td&gt;
&lt;td&gt;⌃[&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select all precedents in Excel&lt;/td&gt;
&lt;td&gt;ctrlshift{&lt;/td&gt;
&lt;td&gt;⌃⇧{&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select direct dependents in Excel&lt;/td&gt;
&lt;td&gt;ctrl]&lt;/td&gt;
&lt;td&gt;⌃]&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select all dependents in Excel&lt;/td&gt;
&lt;td&gt;ctrlshift}&lt;/td&gt;
&lt;td&gt;⌃⇧}&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select visible cells only in Excel&lt;/td&gt;
&lt;td&gt;alt;&lt;/td&gt;
&lt;td&gt;⌘⇧Z&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Cell Edit Mode Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Edit the active cell in Excel&lt;/td&gt;
&lt;td&gt;f2&lt;/td&gt;
&lt;td&gt;⌃U&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Insert or edit the comment in Excel&lt;/td&gt;
&lt;td&gt;shiftf2&lt;/td&gt;
&lt;td&gt;Fn⇧F2&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Cancel entry in Excel&lt;/td&gt;
&lt;td&gt;Esc&lt;/td&gt;
&lt;td&gt;Esc&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select one character right in Excel&lt;/td&gt;
&lt;td&gt;shift→&lt;/td&gt;
&lt;td&gt;⇧→&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select one character left in Excel&lt;/td&gt;
&lt;td&gt;shift←&lt;/td&gt;
&lt;td&gt;⇧←&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move one word right in Excel&lt;/td&gt;
&lt;td&gt;ctrl→&lt;/td&gt;
&lt;td&gt;⌃→&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move one word left in Excel&lt;/td&gt;
&lt;td&gt;ctrl←&lt;/td&gt;
&lt;td&gt;⌃←&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select one word right in Excel&lt;/td&gt;
&lt;td&gt;ctrlshift→&lt;/td&gt;
&lt;td&gt;⌃⇧→&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select one word left in Excel&lt;/td&gt;
&lt;td&gt;ctrlshift←&lt;/td&gt;
&lt;td&gt;⌃⇧←&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select to the beginning of a cell in Excel&lt;/td&gt;
&lt;td&gt;shiftHome&lt;/td&gt;
&lt;td&gt;Fn⇧←&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select to end of the cell in Excel&lt;/td&gt;
&lt;td&gt;shiftend&lt;/td&gt;
&lt;td&gt;Fn⇧→&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Delete to end of a line in Excel&lt;/td&gt;
&lt;td&gt;ctrldelete&lt;/td&gt;
&lt;td&gt;⌃Delete&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Delete the character to the left of the cursor in Excel&lt;/td&gt;
&lt;td&gt;backspace&lt;/td&gt;
&lt;td&gt;Delete&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Delete the character to the right of the cursor in Excel&lt;/td&gt;
&lt;td&gt;delete&lt;/td&gt;
&lt;td&gt;FnDelete&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Start a new line in the same cell in Excel&lt;/td&gt;
&lt;td&gt;altenter&lt;/td&gt;
&lt;td&gt;⌃⌥Return&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Entering data Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Enter and move down in Excel&lt;/td&gt;
&lt;td&gt;Enter&lt;/td&gt;
&lt;td&gt;Return&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Enter and move right in Excel&lt;/td&gt;
&lt;td&gt;tab&lt;/td&gt;
&lt;td&gt;Tab&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Enter and move left in Excel&lt;/td&gt;
&lt;td&gt;shifttab&lt;/td&gt;
&lt;td&gt;⇧Tab&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Complete entry and stay in the same cell in Excel&lt;/td&gt;
&lt;td&gt;ctrlEnter&lt;/td&gt;
&lt;td&gt;⌃Return&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Enter the same data in multiple cells in Excel&lt;/td&gt;
&lt;td&gt;ctrlEnter&lt;/td&gt;
&lt;td&gt;⌃Return&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Insert a current date in Excel&lt;/td&gt;
&lt;td&gt;ctrl;&lt;/td&gt;
&lt;td&gt;⌃;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Insert current time in Excel&lt;/td&gt;
&lt;td&gt;ctrlshift:&lt;/td&gt;
&lt;td&gt;⌘:&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Fill down from cell above in Excel&lt;/td&gt;
&lt;td&gt;ctrlD&lt;/td&gt;
&lt;td&gt;⌃D&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Fill right from cell left in Excel&lt;/td&gt;
&lt;td&gt;ctrlr&lt;/td&gt;
&lt;td&gt;⌃R&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Copy a formula from the cell above in Excel&lt;/td&gt;
&lt;td&gt;ctrl‘&lt;/td&gt;
&lt;td&gt;⌃‘&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Copy value from the cell above in Excel&lt;/td&gt;
&lt;td&gt;ctrlshift“&lt;/td&gt;
&lt;td&gt;⌃⇧“&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Add hyperlink in Excel&lt;/td&gt;
&lt;td&gt;ctrlk&lt;/td&gt;
&lt;td&gt;⌘K&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Display AutoComplete list in Excel&lt;/td&gt;
&lt;td&gt;alt↓&lt;/td&gt;
&lt;td&gt;⌥↓&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Flash fill in Excel&lt;/td&gt;
&lt;td&gt;ctrle&lt;/td&gt;
&lt;td&gt;Not Available&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Formatting Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Format anything in Excel&lt;/td&gt;
&lt;td&gt;ctrl1&lt;/td&gt;
&lt;td&gt;⌘1&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Display Format Cells with Font tab selected in Excel&lt;/td&gt;
&lt;td&gt;ctrlshiftF&lt;/td&gt;
&lt;td&gt;⌃⇧F&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Apply or remove bold formatting in Excel&lt;/td&gt;
&lt;td&gt;ctrlb&lt;/td&gt;
&lt;td&gt;⌘B&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Apply or remove italic formatting in Excel&lt;/td&gt;
&lt;td&gt;ctrlI&lt;/td&gt;
&lt;td&gt;⌘I&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Apply or remove underscoring in Excel&lt;/td&gt;
&lt;td&gt;ctrlu&lt;/td&gt;
&lt;td&gt;⌘U&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Apply or remove strikethrough formatting in Excel&lt;/td&gt;
&lt;td&gt;ctrl5&lt;/td&gt;
&lt;td&gt;⌘⇧X&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Add or remove the shadow font style in Excel&lt;/td&gt;
&lt;td&gt;Nil&lt;/td&gt;
&lt;td&gt;⌘⇧W&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Add or remove the outline font style in Excel&lt;/td&gt;
&lt;td&gt;Nil&lt;/td&gt;
&lt;td&gt;⌘⇧D&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Align center in Excel&lt;/td&gt;
&lt;td&gt;althac&lt;/td&gt;
&lt;td&gt;⌘E&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Align left in Excel&lt;/td&gt;
&lt;td&gt;althal&lt;/td&gt;
&lt;td&gt;⌘L&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Align right in Excel&lt;/td&gt;
&lt;td&gt;althar&lt;/td&gt;
&lt;td&gt;⌘R&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Indent in Excel&lt;/td&gt;
&lt;td&gt;alth6&lt;/td&gt;
&lt;td&gt;⌃⌥Tab&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Remove indent in Excel&lt;/td&gt;
&lt;td&gt;alth5&lt;/td&gt;
&lt;td&gt;⌃⌥⇧Tab&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Increase font size one step in Excel&lt;/td&gt;
&lt;td&gt;althFG&lt;/td&gt;
&lt;td&gt;⌘⇧&amp;gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Decrease font size one step in Excel&lt;/td&gt;
&lt;td&gt;althFk&lt;/td&gt;
&lt;td&gt;⌘⇧&amp;lt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Number Formatting Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Apply general format in Excel&lt;/td&gt;
&lt;td&gt;CTRLSHIFT~&lt;/td&gt;
&lt;td&gt;⌃⇧~&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Apply currency format in Excel&lt;/td&gt;
&lt;td&gt;CTRLSHIFT$&lt;/td&gt;
&lt;td&gt;⌃⇧$&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Apply percentage format in Excel&lt;/td&gt;
&lt;td&gt;CTRLSHIFT%&lt;/td&gt;
&lt;td&gt;⌃⇧%&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Apply scientific format in Excel&lt;/td&gt;
&lt;td&gt;CTRLSHIFT^&lt;/td&gt;
&lt;td&gt;⌃⇧^&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Apply date format in Excel&lt;/td&gt;
&lt;td&gt;CTRLSHIFT#&lt;/td&gt;
&lt;td&gt;⌃⇧#&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Apply time format in Excel&lt;/td&gt;
&lt;td&gt;CTRLSHIFT@&lt;/td&gt;
&lt;td&gt;⌃⇧@&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Apply number format in Excel&lt;/td&gt;
&lt;td&gt;CTRLSHIFT!&lt;/td&gt;
&lt;td&gt;⌃⇧!&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Show the active cell on a worksheet in Excel&lt;/td&gt;
&lt;td&gt;CTRLBACKSPACE&lt;/td&gt;
&lt;td&gt;⌘DELETE&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move active cell clockwise in selection in Excel&lt;/td&gt;
&lt;td&gt;CTRL.&lt;/td&gt;
&lt;td&gt;⌃.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move active cell down in selection in Excel&lt;/td&gt;
&lt;td&gt;ENTER&lt;/td&gt;
&lt;td&gt;RETURN&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move active cell up in selection in Excel&lt;/td&gt;
&lt;td&gt;SHIFTENTER&lt;/td&gt;
&lt;td&gt;⇧RETURN&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move active cell right in a selection in Excel&lt;/td&gt;
&lt;td&gt;TAB&lt;/td&gt;
&lt;td&gt;TAB&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move active cell left in a selection in Excel&lt;/td&gt;
&lt;td&gt;SHIFTTAB&lt;/td&gt;
&lt;td&gt;⇧TAB&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Border Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Add border outline in Excel&lt;/td&gt;
&lt;td&gt;ctrlshift&amp;amp;&lt;/td&gt;
&lt;td&gt;⌘⌥0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Add or remove border right in Excel&lt;/td&gt;
&lt;td&gt;altr&lt;/td&gt;
&lt;td&gt;⌘⌥→&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Add or remove border-left in Excel&lt;/td&gt;
&lt;td&gt;altl&lt;/td&gt;
&lt;td&gt;⌘⌥←&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Add or remove border-top in Excel&lt;/td&gt;
&lt;td&gt;altt&lt;/td&gt;
&lt;td&gt;⌘⌥↑&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Add or remove border-bottom in Excel&lt;/td&gt;
&lt;td&gt;altb&lt;/td&gt;
&lt;td&gt;⌘⌥↓&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Add or remove border upward diagonal in Excel&lt;/td&gt;
&lt;td&gt;altd&lt;/td&gt;
&lt;td&gt;Not Available&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Add or remove border horizontal interior in Excel&lt;/td&gt;
&lt;td&gt;alth&lt;/td&gt;
&lt;td&gt;Not Available&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Add or remove border vertical interior in Excel&lt;/td&gt;
&lt;td&gt;altv&lt;/td&gt;
&lt;td&gt;Not Available&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Remove borders in Excel&lt;/td&gt;
&lt;td&gt;ctrlshift_&lt;/td&gt;
&lt;td&gt;⌘⌥_&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Formula Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Toggle absolute and relative references in Excel&lt;/td&gt;
&lt;td&gt;f4&lt;/td&gt;
&lt;td&gt;⌘ T&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Open the Insert Function Dialog Box in Excel&lt;/td&gt;
&lt;td&gt;shift f3&lt;/td&gt;
&lt;td&gt;Fn ⇧F3&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Autosum selected cells in Excel&lt;/td&gt;
&lt;td&gt;alt =&lt;/td&gt;
&lt;td&gt;⌘ ⇧T&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Toggle formulas on and off in Excel&lt;/td&gt;
&lt;td&gt;ctrl `&lt;/td&gt;
&lt;td&gt;⌃ `&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Insert function arguments in Excel&lt;/td&gt;
&lt;td&gt;ctrl  &lt;br&gt;shift  &lt;br&gt;a&lt;/td&gt;
&lt;td&gt;⌃ ⇧A&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Enter array formula in Excel&lt;/td&gt;
&lt;td&gt;ctrl  &lt;br&gt;shift  &lt;br&gt;Enter&lt;/td&gt;
&lt;td&gt;⌃ ⇧Return&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Calculate worksheets in Excel&lt;/td&gt;
&lt;td&gt;f9&lt;/td&gt;
&lt;td&gt;Fn F9&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Calculate active worksheet in Excel&lt;/td&gt;
&lt;td&gt;shift  &lt;br&gt;f9&lt;/td&gt;
&lt;td&gt;Fn ⇧F9&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Force calculate all worksheets in Excel&lt;/td&gt;
&lt;td&gt;ctrl  &lt;br&gt;alt  &lt;br&gt;f9&lt;/td&gt;
&lt;td&gt;Not Available&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Evaluate part of a formula in Excel&lt;/td&gt;
&lt;td&gt;f9&lt;/td&gt;
&lt;td&gt;Fn F9&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Expand or collapse the formula bar in Excel&lt;/td&gt;
&lt;td&gt;ctrl  &lt;br&gt;shift  &lt;br&gt;u&lt;/td&gt;
&lt;td&gt;⌃ ⇧U&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Display function arguments dialog box in Excel&lt;/td&gt;
&lt;td&gt;ctrl  &lt;br&gt;a&lt;/td&gt;
&lt;td&gt;⌃ A&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Define a name in Excel&lt;/td&gt;
&lt;td&gt;ctrl  &lt;br&gt;f3&lt;/td&gt;
&lt;td&gt;Fn ⌃F3&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Define name using row and column labels in Excel&lt;/td&gt;
&lt;td&gt;ctrl  &lt;br&gt;shift  &lt;br&gt;f3&lt;/td&gt;
&lt;td&gt;Fn⌃⇧F3&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Paste name into a formula in Excel&lt;/td&gt;
&lt;td&gt;f3&lt;/td&gt;
&lt;td&gt;Not Available&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Accept function with autocomplete in Excel&lt;/td&gt;
&lt;td&gt;tab&lt;/td&gt;
&lt;td&gt;↓ Tab&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Grid Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Display Insert Dialog box in Excel&lt;/td&gt;
&lt;td&gt;ctrlshift+&lt;/td&gt;
&lt;td&gt;⌘ ⇧+&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Insert rows in Excel&lt;/td&gt;
&lt;td&gt;ctrlshift+&lt;/td&gt;
&lt;td&gt;⌘ ⇧+&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Insert columns in Excel&lt;/td&gt;
&lt;td&gt;ctrlshift+&lt;/td&gt;
&lt;td&gt;⌘ ⇧+&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Display Delete dialog box in Excel&lt;/td&gt;
&lt;td&gt;ctrl –&lt;/td&gt;
&lt;td&gt;⌘ –&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Delete rows in Excel&lt;/td&gt;
&lt;td&gt;ctrl –&lt;/td&gt;
&lt;td&gt;⌘ –&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Delete columns in Excel&lt;/td&gt;
&lt;td&gt;ctrl –&lt;/td&gt;
&lt;td&gt;⌘ –&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Delete cells in Excel&lt;/td&gt;
&lt;td&gt;ctrl –&lt;/td&gt;
&lt;td&gt;⌘ –&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Delete the contents of selected cells in Excel&lt;/td&gt;
&lt;td&gt;Delete&lt;/td&gt;
&lt;td&gt;Fn Delete&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Hide columns in Excel&lt;/td&gt;
&lt;td&gt;ctrl 0&lt;/td&gt;
&lt;td&gt;⌃ 0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Hide rows in Excel&lt;/td&gt;
&lt;td&gt;ctrl 9&lt;/td&gt;
&lt;td&gt;⌃ 9&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Unhide rows in Excel&lt;/td&gt;
&lt;td&gt;ctrl shift 9&lt;/td&gt;
&lt;td&gt;⌃ ⇧9&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Unhide Columns in Excel&lt;/td&gt;
&lt;td&gt;ctrl shift 0&lt;/td&gt;
&lt;td&gt;⌃ ⇧0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Group rows or columns in Excel&lt;/td&gt;
&lt;td&gt;alt shift →&lt;/td&gt;
&lt;td&gt;⌘ ⇧K&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Ungroup rows or columns in Excel&lt;/td&gt;
&lt;td&gt;alt shift ←&lt;/td&gt;
&lt;td&gt;⌘ ⇧J&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Open Group Dialog Box in Excel&lt;/td&gt;
&lt;td&gt;alt shift →&lt;/td&gt;
&lt;td&gt;⌘ ⇧K&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Open Ungroup Dialog Box in Excel&lt;/td&gt;
&lt;td&gt;alt shift ←&lt;/td&gt;
&lt;td&gt;⌘ ⇧J&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Hide or Show outline symbols in Excel&lt;/td&gt;
&lt;td&gt;ctrl 8&lt;/td&gt;
&lt;td&gt;⌃ 8&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Zoom in in Excel&lt;/td&gt;
&lt;td&gt;ctrl alt +&lt;/td&gt;
&lt;td&gt;⌥ ⌘+&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Zoom out in Excel&lt;/td&gt;
&lt;td&gt;ctrl alt –&lt;/td&gt;
&lt;td&gt;⌥ ⌘–&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Pivot Tables Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Select the entire pivot table in Excel&lt;/td&gt;
&lt;td&gt;ctrl a&lt;/td&gt;
&lt;td&gt;⌘ A&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Toggle pivot table field checkbox in Excel&lt;/td&gt;
&lt;td&gt;space&lt;/td&gt;
&lt;td&gt;Space&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Group pivot table items in Excel&lt;/td&gt;
&lt;td&gt;alt shift →&lt;/td&gt;
&lt;td&gt;⌘ ⇧K&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Ungroup pivot table items in Excel&lt;/td&gt;
&lt;td&gt;alt shift ←&lt;/td&gt;
&lt;td&gt;⌘ ⇧J&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Hide pivot table item in Excel&lt;/td&gt;
&lt;td&gt;ctrl –&lt;/td&gt;
&lt;td&gt;Ctrl –&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Create a pivot chart on the same worksheet in Excel&lt;/td&gt;
&lt;td&gt;alt f1&lt;/td&gt;
&lt;td&gt;Not Available&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Create a pivot chart on a new worksheet in Excel&lt;/td&gt;
&lt;td&gt;f11&lt;/td&gt;
&lt;td&gt;Fn F11&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Create a pivot chart on a new worksheet in Excel&lt;/td&gt;
&lt;td&gt;alt d p&lt;/td&gt;
&lt;td&gt;⌘ ⌥P&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Workbook Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Insert new worksheet in Excel&lt;/td&gt;
&lt;td&gt;Shiftf11&lt;/td&gt;
&lt;td&gt;Fn ⇧F11&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Go to next worksheet in Excel&lt;/td&gt;
&lt;td&gt;ctrl pg.dn&lt;/td&gt;
&lt;td&gt;Fn ⌃↓&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Go to the previous worksheet in Excel&lt;/td&gt;
&lt;td&gt;ctrl pg.up&lt;/td&gt;
&lt;td&gt;Fn ⌃↑&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move to next pane in Excel&lt;/td&gt;
&lt;td&gt;shiftf6&lt;/td&gt;
&lt;td&gt;Fn ⇧F6&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Go to next workbook in Excel&lt;/td&gt;
&lt;td&gt;ctrl tab&lt;/td&gt;
&lt;td&gt;⌃ Tab&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Go to the previous workbook in Excel&lt;/td&gt;
&lt;td&gt;ctrl shift tab&lt;/td&gt;
&lt;td&gt;⌃ ⇧Tab&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Minimize the current workbook window in Excel&lt;/td&gt;
&lt;td&gt;ctrl f9&lt;/td&gt;
&lt;td&gt;⌘M&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Maximize the current workbook window in Excel&lt;/td&gt;
&lt;td&gt;ctrl f10&lt;/td&gt;
&lt;td&gt;Fn ⌃F10&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select adjacent worksheets in Excel&lt;/td&gt;
&lt;td&gt;shift Click&lt;/td&gt;
&lt;td&gt;⇧ Click&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Select non-adjacent worksheets in Excel&lt;/td&gt;
&lt;td&gt;ctrl Click&lt;/td&gt;
&lt;td&gt;⌘ Click&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Toggle scroll lock in Excel&lt;/td&gt;
&lt;td&gt;Scrlk&lt;/td&gt;
&lt;td&gt;Fn ⇧F14&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Toggle full screen in Excel&lt;/td&gt;
&lt;td&gt;ctrl shift f1&lt;/td&gt;
&lt;td&gt;⌃ ⌘F&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Dialog Boxes Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Move to the next control in Excel&lt;/td&gt;
&lt;td&gt;tab&lt;/td&gt;
&lt;td&gt;Tab&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move to the previous control in Excel&lt;/td&gt;
&lt;td&gt;shift tab&lt;/td&gt;
&lt;td&gt;⇧ Tab&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move to the next tab in Excel&lt;/td&gt;
&lt;td&gt;ctrl tab&lt;/td&gt;
&lt;td&gt;⇧ Tab&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move to the previous tab in Excel&lt;/td&gt;
&lt;td&gt;ctrl shift tab&lt;/td&gt;
&lt;td&gt;⌃ ⇧Tab&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Accept and apply in Excel&lt;/td&gt;
&lt;td&gt;Enter&lt;/td&gt;
&lt;td&gt;Retrn&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Check and uncheck the box in Excel&lt;/td&gt;
&lt;td&gt;space&lt;/td&gt;
&lt;td&gt;Space&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Cancel and close the dialog box in Excel&lt;/td&gt;
&lt;td&gt;Esc&lt;/td&gt;
&lt;td&gt;Esc&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Other Options Shortcuts:
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Options&lt;/th&gt;
&lt;th&gt;Windows&lt;/th&gt;
&lt;th&gt;Mac&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;How to Open Spelling dialog box in Excel&lt;/td&gt;
&lt;td&gt;f7&lt;/td&gt;
&lt;td&gt;Fn F7&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Open Thesaurus dialog box in Excel&lt;/td&gt;
&lt;td&gt;shift f7&lt;/td&gt;
&lt;td&gt;Fn ⇧F7&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Open Macro dialog box in Excel&lt;/td&gt;
&lt;td&gt;alt f8&lt;/td&gt;
&lt;td&gt;Fn ⌥F8&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Open VBA Editor in Excel&lt;/td&gt;
&lt;td&gt;alt f11&lt;/td&gt;
&lt;td&gt;Fn ⌥F11&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Duplicate object in Excel&lt;/td&gt;
&lt;td&gt;ctrl D&lt;/td&gt;
&lt;td&gt;⌘ D&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Snap to the grid in Excel&lt;/td&gt;
&lt;td&gt;alt&lt;/td&gt;
&lt;td&gt;⌘&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Hide or show objects in Excel&lt;/td&gt;
&lt;td&gt;ctrl 6&lt;/td&gt;
&lt;td&gt;⌃ 6&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Display Modify Cell Style dialog box in Excel&lt;/td&gt;
&lt;td&gt;alt ‘&lt;/td&gt;
&lt;td&gt;⌘ ⇧L&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Display the right-click menu in Excel&lt;/td&gt;
&lt;td&gt;Shift f10&lt;/td&gt;
&lt;td&gt;Fn ⇧F10&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Delete a comment in Excel&lt;/td&gt;
&lt;td&gt;Shift f10D&lt;/td&gt;
&lt;td&gt;Fn ShiftF10&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Display control menu in Excel&lt;/td&gt;
&lt;td&gt;alt space&lt;/td&gt;
&lt;td&gt;?&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Move to the previous tab in Excel&lt;/td&gt;
&lt;td&gt;ctrl shift tab&lt;/td&gt;
&lt;td&gt;⌃ ⇧Tab&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Accept and apply in Excel&lt;/td&gt;
&lt;td&gt;Enter&lt;/td&gt;
&lt;td&gt;Return&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Check and uncheck the box in Excel&lt;/td&gt;
&lt;td&gt;space&lt;/td&gt;
&lt;td&gt;Space&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;How to Cancel and close the dialog box in Excel&lt;/td&gt;
&lt;td&gt;Esc&lt;/td&gt;
&lt;td&gt;Esc&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;That’s it.&lt;/p&gt;

&lt;p&gt;–&lt;a href="https://excel24x7.com/creator/narendhiran-vijayakumar/" rel="noopener noreferrer"&gt;Narendhiran Vijayakumar&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Feel free to comment us below, if you have any queries about the above topic and find more interesting excel tutorials on our homepage: &lt;a href="https://excel24x7.com/" rel="noopener noreferrer"&gt;Excel24x7.com&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>excel</category>
      <category>office</category>
      <category>windows</category>
      <category>tips</category>
    </item>
  </channel>
</rss>
