-1

I have three Columns in one sheet. Col1 Have Combination Of Col2 Values, I need to replace Col1 Value as equal Of COl2 = col3 Value.

Is there Any Formula to do this in LibreOffice Calculation.

Actual Table:

Col1  | col2 | Col3 
  A   |  A   |  X
  C   |  B   |  Y
  A   |  C   |  Z
  B   |      | 
  A   |      |
  B   |      | 
  C   |      | 
  A   |      | 
  C   |  
  B   |  

Expected Output:

Col1  | col2 | Col3 
  X   |  A   |  X
  Z   |  B   |  Y
  X   |  C   |  Z
  Y   |      | 
  X   |      |
  Y   |      | 
  Z   |      | 
  X   |      | 
  Z   |  
  Y   |  

Thanks In Advance, I am struggling For long days in this.

Kamal kannan
  • 253
  • 3
  • 17

1 Answers1

1

Basically it's a work around. You would like to change A->X, B->Y and C->Z in col1. Create a col4 with the formula

=CHAR(CODE(A1)+23)

This offsets the A by 23 characters that will be X and therefore, B and Cs with Y and Z.

SKPS
  • 5,433
  • 5
  • 29
  • 63