[Solved] Is there a macro I can put on a command button, to move the current sheet to a different closed workbook? [closed]

Insert a button on the workbook and assign this code to the button, make sure to change the filename path to yours: Private Sub CommandButton1_Click() On Error Resume Next Dim sheetIndex As Integer sheetIndex = 1 Application.ScreenUpdating = False Workbooks.Open Filename:=”C:\YourPath\Completed Workorders.xlsm” Windows(“Workorders.xlsm”).Activate ActiveSheet.Select ActiveSheet.Copy Before:=Workbooks(“Completed Workorders.xlsm”).Sheets(sheetIndex) sheetIndex = sheetIndex + 1 ActiveWorkbook.Save Windows(“Completed Workorders.xlsm”).Close … Read more

[Solved] Excel VBA to sum right column to left column

It’s not the most elegant code, but it works out for you. I totally changed the logic that you used to make ColSumTraining3 sub. Assign the macro to a button, select the desired row and click the button. The value of CumWip will be automattically filled based on the Area. You can adapt this code … Read more

[Solved] get value/charts in another workbooks without opening it

I finally used these lines of code Arg = “‘” & Path & “[” & File & “]” & Sheet & “‘!” & “R4C4” ‘Range(Ref.Range(“A1”).Address(, , xlR1C1))C ‘Execute XLM macro GetValue = ExecuteExcel4Macro(Arg) Way more simple with some loops. solved get value/charts in another workbooks without opening it

[Solved] SAP EXCEL TABLE [closed]

My suggestion is as follows: Session.FindById(“wnd[0]/usr/tblZVMGO_SO_RDD_FDF_UPDTETABCON‌​/‌​ctxtVBAK-VBELN[0,‌​” & cstr(Loo‌​pNum) & “]”).Text = Fill(LoopNum) Regards, ScriptMan 2 solved SAP EXCEL TABLE [closed]

[Solved] Duplicate number and it value in column EXCEL [closed]

Option Explicit Sub wqewrty() With Worksheets(“sheet1″).Cells(1, 1).CurrentRegion .Cells.Sort Key1:=.Columns(1), Order1:=xlAscending, _ Key2:=.Columns(2), Order2:=xlAscending, _ Orientation:=xlTopToBottom, Header:=xlNo With .Columns(1).Offset(1, 0) .FormatConditions.Delete .FormatConditions.Add Type:=xlExpression, Formula1:=”=$A2=$A1” .FormatConditions(1).NumberFormat = “;;;” End With End With End Sub I’ve assumed that you wanted to use column B as a secondary sort key to the primary sort key on column A. If … Read more

(Solved) How to avoid using Select in Excel VBA

Some examples of how to avoid select Use Dim‘d variables Dim rng as Range Set the variable to the required range. There are many ways to refer to a single-cell range: Set rng = Range(“A1”) Set rng = Cells(1, 1) Set rng = Range(“NamedRange”) Or a multi-cell range: Set rng = Range(“A1:B10”) Set rng = … Read more