C
Carl Witthoft
On the off chance that not everybody (besides me ) knows this:
I had a csv file with a several columns of data and a column of text
identifying each row. The identifiers were things like "sample1,"
"sample2," and so on; with many rows belonging to a given sampleX value.
I created a column which extracted the number, using RIGHT(), and found
out that Excel treated the extracted value as a string aka text format.
This was not too surprising. The cool thing is that if I wrote a
formula like
=RIGHT(A1,1)*1
Then the value in the cell was converted to numeric, and I could do
other 'stuff' with it.
neat, huh?
I had a csv file with a several columns of data and a column of text
identifying each row. The identifiers were things like "sample1,"
"sample2," and so on; with many rows belonging to a given sampleX value.
I created a column which extracted the number, using RIGHT(), and found
out that Excel treated the extracted value as a string aka text format.
This was not too surprising. The cool thing is that if I wrote a
formula like
=RIGHT(A1,1)*1
Then the value in the cell was converted to numeric, and I could do
other 'stuff' with it.
neat, huh?