Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 11 months ago.
Improve this question
Need help to extract alphanumeric string from a cell IN EXCEL 2013/2016
Example cells:
Tom Jomes 10102230SP01001 Payment
Jonas Haul 550R202202230016 Car
Holland motors 10102230C002001
Jeevan 0073669900002 cc
Need below result in new cell against the above:
10102230SP01001
550R202202230016
10102230C002001
0073669900002
Thanks in advance
From your current sample you may utilize FILTERXML() function.
=FILTERXML("<t><s>"&SUBSTITUTE(A1," ","</s><s>")&"</s></t>","//s[translate(.,'1234567890','')!=.]")
Details here from JvdV
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 days ago.
Improve this question
an example of the data set I have is shown below: enter image description here
With this I want to be able to combine rows that have the same (Date, Scope & Category) and have the Val/COArea Crcy column sum together the rows values so I then have one row displaying the Date, Scope, Category, and value.
Hopefully this makes sense... Thanks!
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 13 days ago.
This post was edited and submitted for review 7 days ago.
Improve this question
Unfortunately, I couldn't find the right thread, so I'm trying here.
I'm trying to write a function with XLOOKUP that accesses the Database table. I can do that with the formula. But my problem is that I also have individual headings/titles for the individual cells of the XLOOKUP. I would like to transpose both rows with multiple columns. Unfortunately, this does not work so easily with MTRANS. Therefore, I am trying to solve the transposition with VBA (reluctantly).
I have not been able to find a reasonable solution. Example structure looks like the datatype "test.xlms":
Now, row 1&2 have to transponse. How can i do that? And how can i translate a XLOOKUP-function with 5 arguments in a VBA-script? Can anybody explain it?
enter image description here
enter image description here
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 months ago.
Improve this question
I am trying to add two values from two cells , A & B and then update that in B. Basically, it is B=A+B. Is it possible in Excel? Using VBA?
Trying using like this
Sub Add()
Range("C9").Value = Range("C9").Value + Range("D9").Value
End Sub
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
enter image description here[vlookup]
Erradic/inconsistent behavior with vlookup function in MS Excel.
The search list is in yellow, search result is in green.
Please refer to the captured image.
Help would be much appreciated.
Nothing is wrong with vlookup.
Vlookup will look in the first column for what you want, in this case it looks in column A for “round” and returns n/a which is perfectly correct.
You could 4 vlookups to deal with this or you can try index and match ...
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
I need to create a sequence here the next should be A100100101000002 and so on
I try many ways, I am not experienced with Excel any help is highly appreciated. Thank all
Put this in A1,
=text(row(1:1), "\A\1\0\0\1\0\0\1\0\1000000")
Fill down. That should be good up to row 999,999.