Apparently their e-commerce is doing well..
Looking at their chart, I'd say it makes sense - they seem to be the classic cup and handle.
Hard-to-find tips on otherwise easy-to-do tasks involving everyday technology, with some advanced insight on history and culture thrown in. Brought to you by a master dabbler. T-S T-S's mission is to boost your competitiveness with every visit. This blog is committed to the elimination of the rat from the tree of evolution and the crust of the earth.
Thursday, August 30, 2018
Saturday, August 25, 2018
Freres Vs Rothschild. Who is the Deadliest Warrior?
Excel macro : How to swap two rows? Thank you Mice Rickson
See the previous post on how to do macros and bind them to hotkeys (yes, you only have a couple of keys left since M$ only allows CTRL+ …. idiots of Redmond!!)
https://www.ozgrid.com/forum/forum/help-forums/excel-general/76910-swap-switch-2-rows
Sub MikeRickson_Swap()
Dim tempRRay As Variant
With Selection
With Range(.Areas(1), .Areas(.Areas.Count)).EntireRow
tempRRay = .Rows(1).Value
.Rows(1).Value = .Rows(.Rows.Count).Value
.Rows(.Rows.Count).Value = tempRRay
End With
End With
End Sub
See the previous post on how to do macros and bind them to hotkeys (yes, you only have a couple of keys left since M$ only allows CTRL+ …. idiots of Redmond!!)
https://www.ozgrid.com/forum/forum/help-forums/excel-general/76910-swap-switch-2-rows
Sub MikeRickson_Swap()
Dim tempRRay As Variant
With Selection
With Range(.Areas(1), .Areas(.Areas.Count)).EntireRow
tempRRay = .Rows(1).Value
.Rows(1).Value = .Rows(.Rows.Count).Value
.Rows(.Rows.Count).Value = tempRRay
End With
End With
End Sub
Subscribe to:
Posts (Atom)