Hi, i was wondering if anyone could help me out and explain why the 'o' in 'nov' is being dropped in the output of my formula.
As you can see the formula works fine for 'oct' (and all other months) but I dont understand why it won't work for 'nov'.
Hi @Inactive User,
It looks like you are using the replacechar function when you actually want the replace function.
Greg
There are a couple of ways to do this, but using RegEx might be the most accurate. Try using this:(\w{3}\s\d+.+\d{4})\sTo
It is looking for 3 letters, a space, digits, something in between, then 4 digits followed by a space and "To".
Hi @Inactive User
You need to use Replace instead of ReplaceChar
ReplaceChar finds each char in the string and replaces it.
Hi, this my result from using the Replace formula rather than ReplaceChar - i am still not achieving the desired result.
I still dont really understand why the issue is happening in some months and not in others?