Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • Filter Data Based on Date in Excel
  • Excel Bar Chart
  • Error Bars in Excel
  • Excel Line Chart
  • How to add Trendline to a chart in Excel

References

  • Multi-criteria lookup and transpose in Excel
  • Merge tables with VLOOKUP in Excel
  • Lookup entire row in Excel
  • How to get first row number in range in Excel
  • Approximate match with multiple criteria in Excel

Data Validations

  • Excel Data validation exists in list
  • Excel Data validation no punctuation
  • Excel Data validation allow uppercase only
  • Excel Data validation must not contain
  • Excel Data validation whole percentage only

Tag: EOMONTH function

EOMONTH function: Description, Usage, Syntax, Examples and Explanation

by

What is EOMONTH function in Excel? EOMONTH function is one of Date and Time functions in Microsoft Excel that returns the serial number for the last day of the month that is the indicated number of months before or after start_date. Use EOMONTH to calculate maturity dates or due dates that fall on the last day of …

Continue Reading

Count dates in current month in Excel

by

This tutorial shows how to Count dates in current month in Excel using example below. To count dates in the current month, you can use a formula based on the COUNTIFS or SUMPRODUCT function as explained below. Formula =COUNTIFS(range,”>=”&EOMONTH(TODAY(),-1)+1, range,”<“&EOMONTH(TODAY(),0)+1) Explanation In the example shown above, the formula in E7 is: =COUNTIFS(dates,”>=”&EOMONTH(TODAY(), -1)+1,dates,”<“&EOMONTH(TODAY(),0)+1) Where “dates” …

Continue Reading

Steps to create Dynamic calendar grid in Excel

by

This tutorial show how to  create Dynamic calendar grid in Excel using the example below. You can set up dynamic calendar grid on an Excel worksheet with a series of formulas, as explained in this article. Explanation of how this formula works In the example shown, the formula in B6 is: =start-CHOOSE(WEEKDAY(start),0,1,2,3,4,5,6) where “start” is the named …

Continue Reading

Display Days in month in Excel

by

This tutorial shows how to Display Days in month in Excel using example below. To get the number of days in a given month from a date, you can use a formula based on the EOMONTH and DAY functions. Formula =DAY(EOMONTH(date,0)) Explanation In the example shown, the formula in cell B5 is: =DAY(EOMONTH(B5,0)) How this …

Continue Reading

Get first day of previous month in Excel

by

To get the first day of the previous month for a given date, you can use a simple formula based on the EOMONTH function. Formula =EOMONTH(date,-2)+1 Explanation In the example shown, the formula in cell B5 is: =EOMONTH(B5,-2)+1 In the example shown, months is supplied as -2, which causes EOMONTH to return 4/30/2015. Then, 1 …

Continue Reading

Get first day of month in Excel

by

This tutorial shows how to get first day of month in Excel using the example below. To get the first day of the month for a given date, you can use a simple formula based on the DAY function. Formula =date-DAY(date)+1 In the example shown, the formula in cell C5 is: =B5-DAY(B5)+1 Explanation   The …

Continue Reading

Get last weekday in month in Excel

by

This tutorial shows you how to find the last weekday of the month in Excel. To get the last weekday in a month (i.e. the last Saturday, the last Friday, the last Monday, etc) you can use a formula based on the EOMONTH and WEEKDAY functions. Formula =EOMONTH(date,0)+1-WEEKDAY(EOMONTH(date,0)+1-dow) Explanation First, this formula determines the first …

Continue Reading

Get last day of month in Excel

by

If you want to calculate the last day of a month based on a given date, then this tutorials is for you. The example below shows two different ways to achieve this. First, use the EOMONTH function. Formula =EOMONTH(date,0) Explanation In the example shown, the formula in cell B5 is: =EOMONTH(B5,0) The 2nd argument (months) …

Continue Reading

How to calculate workdays per month in Excel

by

To calculate workdays per month, use the EOMONTH function together with the NETWORKDAYS function. Formula =NETWORKDAYS(date,EOMONTH(date,0),holidays) Explanation In the example shown, the formula in C4 is: =NETWORKDAYS(B4,EOMONTH(B4,0),holidays) Where “holidays” is the named range E3:E13. How this formula works First, it’s important to understand that the values in the Month column (B) are actual dates, formatted with the …

Continue Reading

How to calculate working days left in month in Excel

by

To calculate the number of workdays remaining in a month, you can use the NETWORKDAYS function. NETWORKDAYS automatically excludes weekends, and it can optionally exclude a custom list of holidays as well. Formula =NETWORKDAYS(date,EOMONTH(date,0),holidays) Explanation In the example shown, the formula in C5 is: =NETWORKDAYS(B5,EOMONTH(B5,0),E5:E14) Were B5 contains a current date, and the range E5:E14 contains …

Continue Reading

Calculate expiration date in Excel

by

If you need to calculate an expiration in the future, you can use a variety of formulas. See example below; Formula =A1+30 // 30 days Explanation In the example shown, the formulas used in column D are: =B5+30 // 30 days =B5+90 // 90 days =EOMONTH(B7,0) // end of month =EDATE(B8,1) // next month =EOMONTH(B7,0)+1 …

Continue Reading

Sum by month in Excel

by

This tutorial shows how to Sum by month in Excel using the example below; Formula =SUMIFS(values,date_range,”>=”&A1,date_range,”<=”&EOMONTH(A1,0)) Explanation To sum by month, you can use a formula based on the SUMIFS function, with help from the EOMONTH function. In the example shown, the formula in F4 is: =SUMIFS(amount,date,”>=”&E4,date,”<=”&EOMONTH(E4,0)) This formula uses the named ranges “amount” (C4:C9) and “date” …

Continue Reading

Average by month in Excel

by

This tutorial shows how to work Average by month in Excel using the example below; Formula =AVERAGEIFS(values,dates,”>=”&A1,dates,”<=”&EOMONTH(A1)) Explanation To average by month, you can use a formula based on the AVERAGEIFS function, with help from the EOMONTH function. In the example shown, the formula in F4 is: =AVERAGEIFS(amounts,dates,”>=”&F5,dates,”<=”&EOMONTH(F5,0)) This formula uses the named ranges “amounts” (D5:D104) and …

Continue Reading

Average response time per month in Excel

by

This tutorial shows how to work Average response time per month in Excel using the example below; Formula =AVERAGEIFS(durations,dates,”>=”&A1,dates,”<=”&EOMONTH(A1)) Explanation To average response times by month, you can use a formula based on the AVERAGEIFS function, together with the EOMONTH function. In the example shown, the formula in G5 is: =AVERAGEIFS(durations,dates,”>=”&F5,dates,”<=”&EOMONTH(F5,0)) How this formula works This formula uses …

Continue Reading

Find Last Day of the Month in Excel

by

To get the date of the last day of the month in Excel, use the EOMONTH (End of Month) function. 1. For example, get the date of the last day of the current month. Note: the EOMONTH function returns the serial number of the date. Apply a Date format to display the date. 2. For example, get the date of …

Continue Reading

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • Invoice status with nested if in Excel
  • OR function Examples in Excel
  • SWITCH function: Description, Usage, Syntax, Examples and Explanation
  • How to use Excel OR Function
  • AND function: Description, Usage, Syntax, Examples and Explanation

Date Time

  • Calculate series of dates by workdays in Excel
  • Add months to date in Excel
  • Calculate date overlap in days in Excel
  • DATEVALUE function: Description, Usage, Syntax, Examples and Explanation
  • How to get Weekdays, Working days between Two Dates in Excel

Grouping

  • Group times into 3 hour buckets in Excel
  • Map inputs to arbitrary values in Excel
  • Group times into unequal buckets in Excel
  • How to randomly assign people to groups in Excel
  • How to randomly assign data to groups in Excel

General

  • AutoFit Column Width, AutoFit Row Height in Excel
  • With vs Without Array Formula in Excel
  • How to create dynamic worksheet reference in Excel
  • How to create dynamic named range with INDEX in Excel
  • How to calculate profit margin percentage in Excel
© 2025 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning