Simple problem?

Ond

New Member
Joined
Jul 15, 2008
Messages
25
Hi there, a simple problem.

If I have the following:
A X
B XX
C XXX
D XXXX

Which formula do I use to change this into the following:
A XXXX
B XXX
C XX
D X


Regards,
Ond.
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Unclear what you are trying to accomplish with all this. If the string in A1 is always the same,

=mid(a1,1,1) will pick off the first place character.

knowing that, you can concat as many instances of this as you like, thus:

=mid(a1,1,1)&mid(a1,1,1) and so forth

What are you trying to do?
 
Upvote 0
HI
IN col B paste the formula
=INDIRECT("A" & COUNT(A:A)-ROW()+1) drag it till the end of data
Ravi
 
Upvote 0
Hi there.

I'm sorry, I didn't specify my problem well enough. Let my try again. I have the following:

i3ulj5.jpg


The only thing I want to do is to reverse the order of things that are written in the columns.

As you can see the order in column C is the reverse order of things written in column A (but I wrote it "by hand"). Is there a formula for doing such a thing?

Kind regards again,
Ond.
 
Upvote 0
If that is all you want to do.

I'd put numbers,
1,2,3 etch (and past down) in an adjacent column.

Hightlight the 2 columns, and sort ascending or descending as desired.
 
Upvote 0

Forum statistics

Threads
1,214,951
Messages
6,122,446
Members
449,083
Latest member
Ava19

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top