Help on macro

vinayashwitha

Board Regular
Joined
Dec 2, 2009
Messages
73
Hi,

I have below format in excel and i will be updating scores for each paramater (column B).

I Need help on the macro. I will be inserting a command/click button and when i click on the button macro should take the name, contact No., scores from column B and paste it in sheet 2 in the same workbook in one row, in the same way when i click the button the scores should be taken from sheet 1 column b and paste one below other row in sheet 2 each time i click on button.

Below is how raw data looks like.

Column A</SPAN>
Column B</SPAN>
Name:</SPAN>
ABC
Contact Number:</SPAN>
XYZ
Parameter</SPAN>
Score</SPAN>
Parameter A</SPAN>
2</SPAN>
Parameter B</SPAN>
5</SPAN>
Parameter C</SPAN>
6</SPAN>
Parameter D</SPAN>
7</SPAN>
Total Score</SPAN>
5</SPAN>

<TBODY>
</TBODY>

Output expected in sheet 2 is as below.

Name:</SPAN>
Contact Number:</SPAN>
Parameter A</SPAN>
Parameter B</SPAN>
Parameter C</SPAN>
Parameter D</SPAN>
Total Score</SPAN>
ABC</SPAN>
XYZ</SPAN>
2</SPAN>
5</SPAN>
6</SPAN>
7</SPAN>
5</SPAN>

<TBODY>
</TBODY>

I am using Excel 2010.

Thanks in advance.

Regards
Vini
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Code:
Option Explicit

Sub TransposeData()
Dim wsSource As Worksheet, wsDestination As Worksheet

Set wsSource = ActiveWorkbook.Sheets(1)
Set wsDestination = ActiveWorkbook.Sheets(2)

wsSource.Range("A1:A" & wsSource.Range("A" & wsSource.Rows.Count).End(xlUp).Row).Copy
wsDestination.Range("A1").PasteSpecial Transpose:=True

End Sub
 
Upvote 0
Hi,

I am using below code, but problem is that everytime i trigger the macro data is getting pasted in the same row.

I want macro to paste data one below the other row everytime i trigger the macro.

Thanks in advance.

Sub RoundedRectangle5_Click()
'
' RoundedRectangle5_Click Macro
'
' Keyboard Shortcut: Ctrl+a
'
Range("R5:R18").Select
Selection.Copy
Sheets("Data").Select
Range("A3").Select
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=True
Range("A4").Select
Sheets("Form").Select
Range("B5").Select
End Sub

Regards
Vini
 
Upvote 0
Try:

Code:
Sub RoundedRectangle5_Click()
'
'   RoundedRectangle5_Click Macro
'
'   Keyboard Shortcut: Ctrl+a
'
    Dim NextRow As Long
    Range("R5:R18").Copy
    With Sheets("Data")
        NextRow = .Range("A" & .Rows.Count).End(xlUp).Row + 1
        .Range("A" & NextRow).PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
            xlNone, SkipBlanks:=False, Transpose:=True
    End With
End Sub

I removed the unnecessary Selects.
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,269
Members
449,075
Latest member
staticfluids

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