I need to extract data from excel cell. The data is locked between two brackets.
For example: if I have DYT[[AU7]]YHU in a cell, I need to extract AU7.
Edit:
I'm having this formula: MID(A2,FIND("[",A2)+1,FIND("]",A2)-FIND("[",A2)-1)
but I'm getting [AU7 instead AU7
Can someone told me where's my mistake?
Thank you in advance
Ok.. I found an answer:
MID(A2,FIND("[",A2)+2,FIND("]",A2)-FIND("[",A2)-2)
Thanks for those who tried to help!
Related
I have mentioned in the image what i need. Please help me.
Thanks.
Got it . Thanks
Got the solution using UNIQUE() function and then use SUMIF(). Closed.
I have a work dilemma. I have some cells, too many to manual work, that have some combination of the below:
"grievance 01-11 filed 09/19/02"
I am hoping to get only the "01-11" or whatever combination of xx-xx from the cell. I have used =LEFT(R102,FIND("-",R102)-1), but it gives me everything before/after the dash.
Thank y'all for any assistance!
Use SEARCH:
=MID(R102,SEARCH("??-??",R102),5)
I am trying to apply following command:
=IF(ISNUMBER(MATCH(A2,$D$2:$D$564880,0)),A2,"Z"&A2)
but, Excel said that is something wrong and marked A2,$D$2 part.
What is wrong?
Thnx in advance.
By popular demand ;)
Your formula should be:
=IF(ISNUMBER(MATCH(A2;$D$2:$D$564880;0));A2;"Z"&A2)
Good afternoon,
I am trying to use a VLOOKUP formula across different sheets, but so
far I am unsucessful.
The formula I am using is the one below:
VLOOKUP(R9;INDIRECT("'"&INDEX(ListaFolhas;MATCH(1;--(COUNTIF(INDIRECT("'"&ListaFolhas&"'!$C$4:$D$4");R9)>0);0))&"'!$C$4:$D$4");2;FALSE)
ListaFolhas is the name of the range of the names from the different
sheets.
Basically I need to insert the number associated with each person:
What can I be doing wrong? I used this formula from a page and adapted
to my own case...
EDIT:
After some research I figured out an answer. However, I am facing a new problem: The formula I found only considers one word, doesn't consider 2+ words. A screenshot of the situation:
In the image I have the formula I am using and the difference I get. Could anyone help me please? Thanks in advance!
=INDEX(range of cells with the numbers, MATCH(name you are looking for,ListaFolhas, 0))
I am trying to write a excel forumla that takes the following:
http://www.saga.co.uk/money/taxandbenefits/carersallowance.asp
http://www.saga.co.uk/money/taxandbenefits/index.asp
and from these 2 examples would output:
carersallowance
index
Anyone know how this could be done ? Help would be most appreciated.
If you example was in A1 try
=SUBSTITUTE(REPLACE(A1,1,LOOKUP(2^15,FIND("/",A1,ROW(INDIRECT("1:"&LEN(A1))))),""),".asp","")
Another way;
=RIGHT(A1,LEN(A1)-FIND("::",SUBSTITUTE(A1,"/","::",LEN(A1)-LEN(SUBSTITUTE(A1,"/","")))))