EXCEL - Need help combining SUM formula and CONCATENATE in one cell

candis2k6

New Member
Joined
Sep 2, 2014
Messages
2
Step 1: FIELD B1 equals a date + 14
Step 2: FIELD B1 needs to be formatted to add back preceding zeros

I have successfully created each step but cannot combine them in one field.

B1=A1+14 and =CONCATENATE(TEXT(MONTH(B1),"00")&"/",TEXT(DAY(B1)&"/","00"),YEAR(B1))

I need to figure out how to combine these two formulas, the second formula uses the RESULT from the first.

EXCEL 2010
 
Last edited:

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Why do you need Concatenate? If B1 contains a date:

=TEXT(B1,"mm/dd/yyyy")

or

=TEXT(A1+14,"mm/dd/yyyy")
if you are trying to get rid of the formula in B1.

or you could just do:
=A1+14
and format the cells as mm/dd/yyyy
 
Upvote 0

Forum statistics

Threads
1,214,905
Messages
6,122,175
Members
449,071
Latest member
cdnMech

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