Hello,
I have one cell with two pieces of data separated by a / but not all cells have two two data points.
I have a formula to separate out the data to the left and right of the / when there are two pieces of data, but am struggling to find a way around the error of "Invalid Value" when there is only one piece of data in the cell.
Length Left Formula:
=LEFT(Length62, FIND("/", Length62) - 1)
Length Right Formula:
=RIGHT(Length62, LEN(Length62) - FIND("/", Length62))
I think I might need a nested If statement? I am not able to find the right syntax to get it to return in all cases.
Something like " If Box Type is Inner, return Length, If Box Type is Master, return Length, and if Inner & Master, return Length Left".