Stripping file extensions from file names [closed] - excel

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have a Excel spreadsheet in which one column is for accession numbers. While importing the accession numbers, the person imported the filenames instead of just numbers. So now the accession 'numbers' look like:
SRA002989.sra
SRA002986.sra
....
Is there a way to strip off the extensions and just keep the first part like SRA002989, SRA002986 etc.?

Try using the SUBSTITUTE() function. If your data is in Column A, the following will work and can be copied around as necessary.
=SUBSTITUTE(A1,".sra","")

The simplest approach would be to select the column, press CTRL + H for search and replace and to search for ".sra" and replace it with an empty value (just leave the second field empty).

Related

Is there a way to quickly check what attribute the data is in a cell in a spreadsheet? [closed]

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 last month.
Improve this question
I know we can easily convert or change the attribute to of data in a cell quickly and there are shortcuts for it but is there a way to check if a data or list of data in a column is saved as an int/string/date/etc?
I would like to be able to just quickly check if the data I have in a column is saved in the correct format/attribute without having to convert/change it again just to make sure.
Excel will make assumptions of what the data is automatically. There is no datatype like in python or other coding languages. There are functions for testing cells values.
Functions to look at istext(), isblank(), isnumber(), islogical(), iserr(), ...
so if you want to know the data type in B5.
=IFS(ISTEXT(B5),"String",ISBLANK(B5),"Null",ISNUMBER(B5),"Number",ISLOGICAL(B5),"Boolean",ISERR(B5),"Error")
To convert a number to a string use the single quote mark prior to the number like '50. A date in excel is also a number. To convert a number stored as a string into a number multiply by 1.
Edit---
There is a fuction =Cell() see the details here
=CELL("format",B5)

Excel Summing Un-Formatted Numbers [closed]

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 6 months ago.
Improve this question
I'm trying to find an average of a large array of candidates compensation. Some of the cells contain text with multiple numbers showing a range such as, "$100k - $120k". Others are labeled as TC("120k TC") for total composition.
How would I be able to find the average of these numbers by using a something along the lines of substituting letters or parsing the string into a number WITHOUT changing the actual values listed? I do NOT want to mutate the original cell value of I only want to find an average of them all through a formula to bypass the additional "k", "TC" and "-" rendering them un-averageable as they are not parsed as numbers.
Would need to clean up the texts in stages.
find if a certain text is present: eg.
=IF(IFERROR(FIND("-",A1,1),"")<>"","- is present","")
=IF(IFERROR(FIND("TC",A1,1),"")<>"","TC is present","")
=IF(IFERROR(FIND("$",A1,1),"")<>"","$ is present","")
then split left and right price values if "-" is present: eg.
=LEFT(A1,FIND("-",A1,1))
=RIGHT(A1,FIND("-",A1,1))
then if texts are present, remove those texts: eg.
=SUBSTITUTE(A1,"-","")
=SUBSTITUTE(A1,"$","")
=SUBSTITUTE(A1,"k","")
then can use trim() to remove spaces on ends, value() to convert text to number etc...

Excel: Trim text between two specified phrases [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I have an excel spreadsheet of clients. One of the cells is a clob pulled from our database and contains hundreds of words.
What I want to do, is remove everything except the text which starts after "phrase1" and ends before "phrase2" - is there any way to do this in Excel?
i.e.
Text is
a quick brown fox jumped over the lazy dog
I want everything between "brown" and "over", output will be "fox jumped"
Many thanks
Edit: the "I want" wasn't supposed to sound rude, it's just how I would write a requirement in the simplest way to understand. I've tried TRIM and custom filtering but no clue where to go from here.
Here is one approach, although I'm sure there are more compact versions by some formula wizards.
=MID(A1,SEARCH(A2,A1)+LEN(A2),SEARCH(A3,A1)-SEARCH(A2,A1)-LEN(A2))
This assumes your original string is in A1, first substring in A2, second substring in A3.
To automatically remove leading and trailing spaces, use this adjustement:
=MID(A1,SEARCH(A2,A1)+LEN(A2)+1,SEARCH(A3,A1)-SEARCH(A2,A1)-LEN(A2)-2)

Extracting the characters between two - in the current string in an excel macro [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I have a column in my data containing the following type of data
WRO2->DHLPAKET-ASCHHEIM-DI
Each group of words have its own significance.
I am looking for a way to extract the characters between the second and the third minus. (in this case, its "ASCHHEIM". it might change as per the scenario, so extracting it based on its position would be futile)
I want to extract whatever is in between those - and appear in a column of its own.
In your case, if the suggested method Text-To-Columns is not an option somehow, you could use:
=TRIM(MID(SUBSTITUTE(A1,"-",REPT(" ",LEN(A1))),2*LEN(A1)+1,LEN(A1)))
This part 2*.. stands for (N-1)*.., in this case the third 'word'
More information here

Assign a unique integer to an alphanumeric string in excel [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have data of order 4096*2 in excel. Second column contains all alphanumeric values of the kind 10ABC1101, 10CDE1101 and 20FGH2345. I am looking for a method (using Excel functions only and not VBA) to assign a unique integer value to each alphanumeric value in column 2.
Plan is to take data into Matlab for some analysis (and avoid String handling within Matrices) and bring it back to Excel and convert integers into original alphanumeric strings.
Ps: I am new to both Matlab and Excel.
Clearly separating numbers from strings will not help me because that does not assign unique value.
Many Thanks.
For non-consecutive Unique IDs you can use (in column C)
=MATCH(B:B,B:B,0)
To get the string back
=INDEX(B:B,C:C)
Note: these formulas use Implicit Intersection see here for some info

Resources