JawaharPrem
Member
Hi All,
in my sheet2 range(P6:Z23) dashboard, when i select april radio button the dashboard should paste in same fomate in ("b6) iam not getting proper output while iam running this code please help on same. excel file enclosed for reference..
in my sheet2 range(P6:Z23) dashboard, when i select april radio button the dashboard should paste in same fomate in ("b6) iam not getting proper output while iam running this code please help on same. excel file enclosed for reference..
Code:
Sub OptionButton1_Click()
Rows("6:23").Select
Selection.Delete Shift:=xlUp
Columns("a:l").Select
Selection.Delete Shift:=xlToLeft
Sheet2.Range("b6").PasteSpecial Paste:=xlPasteAll, Operation:=xlPasteSpecialOperationNone, SkipBlanks:=False _
, Transpose:=False = Sheet2.Range("P6:Z23").Copy
Application.CutCopyMode = False
Columns("b:L").EntireColumn.AutoFit
Columns("B:L").EntireColumn.AutoFit
Columns("B:L").EntireColumn.AutoFit
End Sub
Attachments
Last edited by a moderator: