Forum Discussion

MUBCAP's avatar
MUBCAP
Copper Contributor
Aug 02, 2020
Solved

Help needed with outcome from cell function into another concat function

Goodafternoon. I need to copy/paste a value from another website with the format "[A1] [B2] [C3]". In the cells A1, B2, C3 etc I have put some values which need searched and concaternated, with t...
  • HansVogelaar's avatar
    HansVogelaar
    Aug 03, 2020

    MUBCAP 

    Let's say the value A1;B2;C3 is in cell A7. The following formula will concatenate the values of cells A1, B2 and C3:

     

    =INDIRECT(LEFT(A7,2))&INDIRECT(MID(A7,4,2))&INDIRECT(RIGHT(A7,2))