shebe228

New Member
Joined
Sep 28, 2017
Messages
46
What formula will extract numbers from a formula using any operator as the delimiter?


For example:

Invoice AmountProduct 1Product 2Product 3
=4384+89463+98764384894639876

<tbody>
</tbody>



The invoice amount has a formula that is auto populated from our system and I want to separate the formula into 3 columns. Some lines may have more or less than 3 amounts in the formula.
 
Not if the Invoice Amount is located in cell A2 ...
Perhaps you should explain your parameters, and what needs to be put in them.
The first one is pretty evident (the cell you want to split), but the second one is not so clear as what should be put in there.
Many people document the parameters at the top of their UDFs (I am big on documenting code!).
 
Upvote 0

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Perhaps you should explain your parameters, and what needs to be put in them.
The first one is pretty evident (the cell you want to split), but the second one is not so clear as what should be put in there.
Many people document the parameters at the top of their UDFs (I am big on documenting code!).

You are so right ... !!!

Code:
Function GetElement(Cell As Range, n As Long)
[COLOR=#ff0000][B]' e.g. in cell B2 =GetElement($A$2,COLUMN()-1)[/B][/COLOR]
Dim tmp As String
Dim elm, tSep
tmp = Replace(Cell.Formula, "=", "")
' Replace All potential Operators
For Each tSep In Array("+", "-", "*", "/")
    tmp = Replace(tmp, tSep, "°")
Next tSep
' Split and return Element
elm = Split(tmp, "°")
GetElement = (elm(n - 1))
End Function
 
Upvote 0
Yes, you show an example, but it doesn't describe what each parameter is.
Actually, I think your example may be even more confusing to a user who is not familar with COLUMN()-1 does.
Remember, not everyone asking question here is an expert on writing VBA code, and is going to be able to reverse engineer and figure out what they need to be entering in for each argument.

So maybe something like this:
Code:
Function GetElement(Cell As Range, n As Long)
[COLOR=#ff0000]'Parameters
'   Cell:  location of string you want to split
'   n:     which element from string you want to return (i.e. 1 for first, 2 for second, ...)
[/COLOR]'e.g. in cell B2 =GetElement($A$2,COLUMN()-1)[COLOR=#ff0000][/COLOR]
...
 
Last edited:
Upvote 0
BTW, I like your use of COLUMN()-1 in the second argument, so you can just drag that formula across the row to dynamically increment that counter.
But that might just require an explanation for some users, on how that works, especially if the value you are looking up is not in column A (will need to subtract a different number).
 
Upvote 0
To be on the safe side, much safer to use COLUMNS($A$1:A1) instead of Column()-1
 
Upvote 0

Forum statistics

Threads
1,215,029
Messages
6,122,755
Members
449,094
Latest member
dsharae57

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