I have data in Col D as follows:
I have a formula to extract the month & year
I need a formula to remove the /
the formula returns 4/2018 based on the data in Col D1 which is currently "Updated on: 05/04/2018 17:08"
It would be appreciated if someone could kindly amend my formula
Book1 | |||
---|---|---|---|
D | |||
1 | Updated on: 05/04/2018 17:08 | ||
Fixed assets Recon |
Cell Formulas | ||
---|---|---|
Range | Formula | |
D1 | ="Updated on: "&TEXT(NOW(), "dd/mm/yyyy hh:mm") |
I have a formula to extract the month & year
Code:
=MID(D1,FIND(":",D1)+6,6)
I need a formula to remove the /
the formula returns 4/2018 based on the data in Col D1 which is currently "Updated on: 05/04/2018 17:08"
It would be appreciated if someone could kindly amend my formula