Would you please provide some feedback on the following formula? It is supposed to be converting the data in cell CSV!AQ3 from feet and inches to decimal inches and doesn't seem to be doing it properly. On my spreadsheet it's showing the result is 4.375 when (I think) it should be 19.625.
The formula was written this way because the CSV the data is pulled from will frequently have spaces randomly put in at the end of it depending on the mood of the data entry person.
I've placed the formula in [ brackets ] and included the number displayed in CSV!AQ3.
Any help is appreciated.
[ =IFERROR(LEFT(CSV!AQ3, FIND("'", CSV!AQ3) - 1), 0) * 12 + SUBSTITUTE(IFERROR(MID(CSV!AQ3, FIND("'",CSV!AQ3) + 1, 8), CSV!AQ3), """", "") ]
CSV!AQ3 contains: 1'-7 5/8"
The formula was written this way because the CSV the data is pulled from will frequently have spaces randomly put in at the end of it depending on the mood of the data entry person.
I've placed the formula in [ brackets ] and included the number displayed in CSV!AQ3.
Any help is appreciated.
[ =IFERROR(LEFT(CSV!AQ3, FIND("'", CSV!AQ3) - 1), 0) * 12 + SUBSTITUTE(IFERROR(MID(CSV!AQ3, FIND("'",CSV!AQ3) + 1, 8), CSV!AQ3), """", "") ]
CSV!AQ3 contains: 1'-7 5/8"