Forum Discussion

danielsffs's avatar
danielsffs
Copper Contributor
Dec 23, 2021
Solved

Text to columns.

Hello everyone,   I'm faily new to Excel and I am creating a simple encrypter in Excel. I want to seperate some binary digits using Convert text to columns wizard but the binary string I am referin...
  • PeterBartholomew1's avatar
    Dec 24, 2021

    danielsffs 

    Why not use a formula? With 365

    = LET(
      start, SEQUENCE(1,12,1,8),
      MID(permutation,start,8))

     or without

    = MID(permutation,{1,9,17,25,33,41,49,57,65,73,81,89},8)

     

Resources