Swap Last Name And First Name?

Aug 10, 2007

I have a huge xls of names setup as Last Name, First Name in a single column.

Any formula or somehow to change the entire column to read First Name Last Name. No comma.

Example -

Smith, Joe
Brown, Barry

-------------------------

Output desired -

Joe Smith
Barry Brown

View 8 Replies


ADVERTISEMENT

Swap Cells Across Row

May 16, 2008

I am attaching a sample sheet as a reference.

in fact the sheet could contain hundreds if not thousands of rows.

Look at column Player 1, the last 3 characters are AoS.

I want to find any rows where Player 1 has those three characters ( AoS ) and swap them with the contents of the Player 2.

BUT if that swap happens then the following swaps must occur as well:

Contents of Column "Side 1" swaps with Contents of Colum "Side 2"
Contents of Column "Player 1 Pts" swaps with Contents of Column "Player 2 Pts"

Ultimately I want this extended so that is the letters AoS appear in any of the following columns ( Player 4, Player 6, Player 8, Player 10)
the following swaps happens:

Contents of Column "Player 3" swaps with Contents of Column "Player 4"
Contents of Column "Side 3" swaps with Contents of Column "Side 4"
Contents of Column "Player 3 Pts" swaps with Contents of Column "Player 4 Pts"

Contents of Column "Player 5" swaps with Contents of Column "Player 6"
Contents of Column "Side 5" swaps with Contents of Column "Side 6"
Contents of Column "Player 5 Pts" swaps with Contents of Column "Player 6 Pts"

View 4 Replies View Related

Swap Values Of Two Cells

Aug 1, 2006

I want to swap values of two cells. can anyone help me on that? Eg. Cell A1
contains the value 20 & cell A2 contains the value 100. I want 100 on A1 &
20 on A2.

View 9 Replies View Related

Swap Columns In Formulas Around

May 12, 2013

I have column AD where there are something like 2,500+ formulas. I would like to change the columns used in the formulas around. By that I mean the first formula is...

Code:
=SUM(AA6-X6)
...and I would like it to be...

Code:
=SUM(X6-AA6)

Now the thing is, the formulas are not continuous, there are breaks where there is a formula to sum say the previous dozen or so for example, then it skips a couple of rows and I have more formulas and then the sum say for the previous dozen for example and so on.

I just want those cells changed with the particular formulas as above.

View 1 Replies View Related

Swap Numbers Or Data Around

Jul 30, 2013

I have let say column A and I have the date and name John 1913 all the way down to John 1940.

But what I need is a way to turn it around so A1 starts with John 1940 down to 1913.? If I drag down it counts up but I want it to count down if that makes sense.?

View 6 Replies View Related

Asset Swap Function

May 21, 2008

Have 5 columns (A1-E1) with different bond data: (respectively)
Coupon, Maturity, Settlement, Price, Yield (asset swap is F1)

Depending on the type of swap I am performing i want the ASWAP (user-created) function to reference different values within the row.

For example: Swap 1 = settlement, maturity, coupon, price, curve
(curve is a user input single number 1-3)

Swap 2 = settlement, maturity, yield, price, curve (yield in place of coup)

Swap 3 = settlement, maturity, yield, 100, curve (100 for par redemption)

etc. I won't type out all the iterations, not necessary.

The way that I want the ASWAP to recognize which Swap# to use is by inputting a number into a cell beside the Aswap column that I can input 1, 2, 3, etc., and then recalculate to get the desired outcome. Want to keep this a static reference as well as the price at par (each owning their own single cell, not a fill down the columns because there are too many).

So assuming G1 is the Swap# input, and H1 is 100...

How do i write a formula that is capable of reading the input in G1 and outputting the proper swap calc.

My gut feeling was along the lines of nested IF's with the corresponding formula... but i won't mess around in futility on here.

Let me know if this is too confusing without me putting up an example.

View 9 Replies View Related

Code To Swap Rows

Jul 19, 2007

I would like to insert a form control (up and down arrows) into a specfied range of cells in a column - ideally the first column. When the form control up or down arrow of the assigned row is clicked it moves that row up or down essentially swapping positions with the row directly above or below. I've seen this functionality in custom excel applications but my searches for code on this topic have been fruitless.

View 5 Replies View Related

Swap Ranges On A Worksheet

Nov 29, 2007

Right now I have 2 ranges say A and B. Range A is in a worksheet on row 7 and range B is on the same worksheet row 8. What I want to do is make it so that range B gets pasted in for range A and vice versa so that range A in now in row 8 and range B is in row 7.

View 2 Replies View Related

Swap Contents Of 2 Rows - VBA Excel

Jan 31, 2013

Swapping the contents of 2 rows, my code does the operation but it is very slow. Here is my code

Sub swap()

Dim aTemp() As Variant
Dim swap As Boolean
swap = False
Dim row As Integer
row = 19

[Code] .......

View 2 Replies View Related

Swap The Data Between Two Columns At A Time

Apr 19, 2007

Swap the data between two columns at a time. Here are multiple columns to be swaped in one worksheet and I have many worksheets to work with.

View 9 Replies View Related

Swap/Rotate Chart Axis

Aug 8, 2008

I am trying to chart a range of dates, for example. I have some boats that are on contract between dates a and b. I would liketo plot several boats with their contract date range. I have tried using a bar chart, but all the lines start at 0. I got it working using an Excel 2007 Stock chart, however, it is in the wrong orientation. I would like to Rotate the Chart 90 degrees, swap the axis, or find a better method all together. I cannot post the spreadsheet as its confidential.

View 2 Replies View Related

Pivot Table Chart - How To Swap X And Y Axis

Dec 4, 2012

My pivot table shows Towns as the Row headings and Month as the column headings. When I do a Chart, I get Towns on the X axis and Months as Y. I want the chart to show all my May data in a stacked column, then all my June data in another stacked column, etc. If I pick "Select Source Data" the options are greyed out. What's a mother to do?

View 1 Replies View Related

Swap Series In Stacked Area Chart

Sep 11, 2007

I have an interactive chart displaying stacked area charts for 2006 and 2007
I currently have 2006 in front of 2007, but as the user chooses 1 of 20 units, it will look better to move 2007 in front of 2006

View 4 Replies View Related

Swap Selected Visible Cells To Values To Right Of Selection

Feb 12, 2014

I am using the code below to "swap" the selected cell values in a column with the ones to the right of the selection. It works fine on unfiltered sheet, but if I apply an Autofilter, it copies both visible and hidden cells, and I only want to swap visible cells. What to modify?

[Code] .....

View 6 Replies View Related

Swap Out Text In Text Box Based On Radio Button Selection

Dec 12, 2012

If the user selects French (radio button selection), I want to swap out the existing English text for French and vice versa. One large text box with several paragraphs. Can Excel do this?

View 2 Replies View Related

Swap 2 Mouse Click Selections After Resizing Selections

Jul 7, 2013

I am trying to take two random Mouse click selections and swap a set of ranges associated with the cells that are selected. For example if the user clicks on A1 it will resize(3,22) and store the selection as a variable to be swapped with another selection. Here is what I have so far but I keep getting a object required error on rngEmp1.

VB:
Sub SwapGroup()
If Selection.Cells.Count < 8 Then
MsgBox "Please Select two Groups to swap. Press and hold 'Ctrl' in between your selections", , "Swap Groups"

[Code] .....

View 4 Replies View Related

Function To Swap Text From Side To Side

Mar 1, 2014

I need function that swaps text from side to side. Text at the left of "x" should be placed at the right side of the "x" and from right to left side:

6x15 -> 15x6 plaah plaah xsomething -> somethingxplaah plaah How to do this?

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved