I wasn't quick enough following up .... davsth beat me to the answer.
For what it's worth, I also went with
Formula:
=SUBSTITUTE(B2," ","") & TEXT(MONTH(DATEVALUE("1"&B3&" 2018")),"000")
The year can be anything you like, from 1900 on. In fact, you can just put 0, thus:
Formula:
=SUBSTITUTE(B2," ","") & TEXT(MONTH(DATEVALUE("1"&B3&" 0")),"000")
You're just trying to built something that the DATEVALUE function will interpret as a date so that you can then use MONTH to extract the month and thus convert it to a number. You then use the TEXT function to format the month number as 3 digits. That said, it seems a little pointless having three digits if the Invoice number is based on the month.
Bookmarks