Hello,
I am trying to trim down the results of and index match. The results from my current formula have dates with time stamp information:
<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>2014-02-07 14:00:09 PST
I would like to remove everything after the space so the results look like this:
<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>2014-02-07
Here is the current formula in Column L of my spreadsheet.
=INDEX(H$2:H$1319,MATCH(A2,B$2:B$1319,0))
In Column M I have this formula to trim down the results, but would rather have it all in one to save space.
=LEFT(L2,FIND(",",L2)-1)
I am trying to trim down the results of and index match. The results from my current formula have dates with time stamp information:
<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>2014-02-07 14:00:09 PST
I would like to remove everything after the space so the results look like this:
<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>2014-02-07
Here is the current formula in Column L of my spreadsheet.
=INDEX(H$2:H$1319,MATCH(A2,B$2:B$1319,0))
In Column M I have this formula to trim down the results, but would rather have it all in one to save space.
=LEFT(L2,FIND(",",L2)-1)