Forum Discussion

J-Griff's avatar
J-Griff
Copper Contributor
Oct 10, 2019
Solved

Help with a formula to sort dimensions?

Hello,   I am trying to determine which excel formula would be the best to create a spread sheet that will automatically input the dimensions for lumber into a given cell. The excerpt below shows t...
  • Twifoo's avatar
    Oct 10, 2019

    Hi J-Griff,

    In the attached file, the formula for Thick in B2 is: 

    =LEFT($E2,
    FIND("x",$E2)-1)

    Moreover, the formula for Width in C2 is: 

    =MID($E2,
    FIND("x",$E2)+1,
    FIND("-",$E2)-FIND("x",$E2)-1)

    Finally, the formula for Length in D2 is: 

    =MID($E2,
    FIND("-",$E2)+1,
    FIND(" ",$E2)-FIND("-",$E2)-1)

Resources