Round to Next Month Formula

acool

Board Regular
Joined
Feb 10, 2023
Messages
107
Office Version
  1. 365
Platform
  1. Windows
Hi Everyone, I am currently trying to create an excel formula which rounds to the first of the next month if it is past the first of the current month. So for example, if the date shown is 9/3, I would like to round to 10/1. Any help in creating this formula would be greatly appreciated.

Thank You!
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
You could try this...
Book1
AB
19/3/202310/1/2023
Sheet1
Cell Formulas
RangeFormula
B1B1=IF(DAY(A1)>1,DATE(YEAR(A1),MONTH(A1)+1,1),"")

Hope that helps,

Doug
 
Upvote 0
Solution
Another option
Fluff.xlsm
AB
1
203/09/202301/10/2023
Data
Cell Formulas
RangeFormula
B2B2=IF(DAY(A2)<>1,EOMONTH(A2,0)+1,A2)
 
Upvote 0

Forum statistics

Threads
1,215,078
Messages
6,122,996
Members
449,093
Latest member
masterms

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top