Forum Discussion

dk356's avatar
dk356
Copper Contributor
Aug 28, 2022
Solved

Finding and replacing a number with a table

I am using Office 365 on a windows 11 PC. If it is possible how do I find and replace a number with a table of numbers?   For example, I download a CSV file of bank transactions for a business chec...
  • Craig Hatmaker's avatar
    Aug 28, 2022

    It is possible to use the & operator to combine the two amounts in one cell. Assume principal is in A1 and Interest is in B1.
    Put this in the cell you want them to appear: = A1 & "," & B1
    if formatting is needed: = TEXT(A1, "#,###.00") & "; " & TEXT(B1, "#,###.00")
    IF labels are also needed: = "Principal=" & TEXT(A1, "#,###.00") & "; " & "Interest =" & TEXT(B1, "#,###.00")
    NOTE! If you do this, and math you may want to perform on merging data in a cell becomes very difficult.

Resources