EXTRACTNUMBERS() with letters B , G , K , M , T

EXTRACTNUMERS(Test 1 Test)
would give the result: 1
That's perfect. But in combination with some letters, you would get false results. This is the case for example in some addresses at least in Germany. There could be Main Street 1 and Main Street 1B.
You even get different results for App Formula in a "real" column and for App Formula in a virtual column.

ValueReal ColumnVirtual ColumnMaybe...?
1bBlank1,000,000,000billion
1BBlank1,000,000,000Billion
1G1,000,000,0001,000,000,000Giga
1k1,0001,000kilo
1K1,0001,000Kilo
1M1,000,0001,000,000Mega
1T1,000,000,000,000BlankTerra

It seems to be an intended behavior. But since it is not in the Documentation and real column differs from VC, I think it should be corrected.
I tested all other letters. They all give blank results, so they are not affected.

We now use some substitute expressions to workaround this:
SUBSTITUTE(
SUBSTITUTE(
SUBSTITUTE(
SUBSTITUTE(
SUBSTITUTE(
UPPER([Adresse]),
"B", " "),
"G", " "),
"K", " "),
"M", " "),
"T", " ")

UPPER() because then we don't need to also substitute small letters like "b" and "k".

5 2 110
2 REPLIES 2

Interesting ๐Ÿ™‚

Steve
Platinum 4
Platinum 4

Escalated.

Top Labels in this Space