I know this question has been asked before, and I've tried to implement the solutions in the other threads, but I cannot get it to work in my situation
This is what my sheet looks like:
I have separated the [Billing Period] string exported by my system using RIGHT and LEFT for the Start and End dates respectively. At this point, they're still text.
In the last column, I want to calculate how many day have elapsed since the end of the period using =TODAY()-[Billing Period End Date]@row. I'm not opposed to a helper column inbetween
I have tried the following, without success:
1) Convert the billing period end date column to a date column. I get an #INVALID OPERATION with the subtraction formula
2) I have tried converting the extracted date string (still in a text column) using:
=DATE(VALUE(LEFT([Billing Period End Date]@row, 2), VALUE(MID([Billing Period End Date]@row, 4, 2)), VALUE(RIGHT([Billing Period End Date]@row, 4))))
This gives me #INCORRECT ARGUMENT SET
Can anyone offer any direction on how I can accomplish this date calculation?
Thank you in advance.