• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

One More Excel Question

Highlight the cell(s) you want to do this with.
Go to Data/Text to Columns
Choose Fixed Width
and click where ever you want the break to occur

g/l

🙂
 
Originally posted by: Fiveohhh
Is it possible to just take the last to letters off every column and move them to the next column?

=RIGHT(A1,2)

Example..

Cell A1 Contains the Following:
I LOVE TO NEF

And if cell A2 contains the formula =RIGHT(A1,2), the result should be
EF
 
Originally posted by: Transition
Originally posted by: Fiveohhh
Is it possible to just take the last to letters off every column and move them to the next column?

=RIGHT(A1,2)

Example..

Cell A1 Contains the Following:
I LOVE TO NEF

And if cell A2 contains the formula =RIGHT(A1,2), the result should be
EF


And, if you do it like this, to get the first part of the cell, you'd have a formula that says:

=LEFT(A1,LEN(A1)-2)

.. Which would return "I LOVE TO N"

🙂
 
Back
Top