Flip Name And Last Name
Jul 17, 2014I am in a search of a formula to flip name and last name, for instance:
Alvarez, Jorge to Jorge Alvarez with no comma.
I am in a search of a formula to flip name and last name, for instance:
Alvarez, Jorge to Jorge Alvarez with no comma.
I have a spreadsheet that is so long ie columns that i have decided to flip it over so that my old row titles are now column headings and my column heading are now row titles.
The reason for this is that I need to enter more that 256 columns into my worksheet matrix and I only have 209 rows thus light bulb moment turned the whole spreasheet 90 degrees within the worksheet!
How can I strip out a name from a cell, see example below, I would need to remove the number and flip the name.
example:
Column A = Column B results
Blow/Joe 123456 = Joe Blow
Johnson/Mike 898930 = Mike Johnson
Mama/Joe 293810 = Joe Mama
Smith/John 389301 = John Smith
I have data map in excel. I want to create a program to flip the data map. The data from the top of the data map will flip to the bottom of the map and the data from the bottom will flip to the top of the map. The process is like a mirror reflection.
Like example:
after a command button is clicked, the data will changed to be like this:
I have been using this macro, which works perfect:
Sub Signflip()
Dim cell As Range
For Each cell In Selection
If IsNumeric(cell.Value) Then cell.Value = -cell.Value
Next cell
End Sub
It allows me to select cells and flip from neg to pos, pos to neg, and it won't error out on text cells. Great little macro.
However, I don't like how it puts a zero in blank cells. It slows down the macro when I select large areas. Is there a way to make this macro work the same way but skip over empty or blank cells and not enter a zero.
I have 10 columns and five rows worth of data in each of those cells
What I really want out of that spreadsheet is 50 rows and only one column
I want to transpose or invert the data so I can apply some formulas in an easier manner
Is there a command to do that.....not too familar with that transpose feature