I have a spreadsheet with multiple columns of data. In one of these columns, I have data that should technically be represented in separate cell columns.
For example: cell "D4" contains both the invoice # and invoice date. It looks like this: "123456 3/2/05"
What I want to do is take this cell "D4" for example, and use some sort of function that will take every character starting from the left until the pointer hits "spaces" (" "). Once the pointer hits a space, I will know when the invoice number ends, and the invoice date starts. I tried using the LEFT(D4,"") function, but I'm getting an error I believe because it doesn't know how to read the "spaces" or ("") for that matter.
Is there a way to use the left function to search for the next "space", or is there a reverse concatenation function I could use?
Please help!!
For example: cell "D4" contains both the invoice # and invoice date. It looks like this: "123456 3/2/05"
What I want to do is take this cell "D4" for example, and use some sort of function that will take every character starting from the left until the pointer hits "spaces" (" "). Once the pointer hits a space, I will know when the invoice number ends, and the invoice date starts. I tried using the LEFT(D4,"") function, but I'm getting an error I believe because it doesn't know how to read the "spaces" or ("") for that matter.
Is there a way to use the left function to search for the next "space", or is there a reverse concatenation function I could use?
Please help!!