zoukankan      html  css  js  c++  java
  • 20170708xlVBA添加新产品修改公式

    Sub ControlInsertProduct()
        Dim Wb As Workbook
        Dim OneSht As Worksheet
        Dim Arr As Variant
        Dim i As Long
        Arr = Array("农家香菜籽油(20L)", "万家炊大豆油(20L)", "万家炊原香菜籽油(20L)", "压榨菜籽油(20L)")
        Set Wb = Application.ThisWorkbook
        For Each OneSht In Wb.Worksheets
            If IsNumeric(OneSht.Name) Or OneSht.Name = "月销量" Then
                For i = LBound(Arr) To UBound(Arr)
                    InsertNewProduct OneSht, Arr(i)
                Next i
            End If
        Next OneSht
        Set Wb = Nothing
        Set OneSht = Nothing
    End Sub
    
    Sub InsertNewProduct(ByVal Sht As Worksheet, ByVal ProductName As String)
        Dim InsertCol&, EndCol&, EndRow&   '插入列和结束列
        Dim CopyStart, CopyEnd    '复制的起始列
        Dim OrgRng As Range
        With Sht
            EndCol = .Cells.Find("*", .Cells(1, 1), xlValues, xlWhole, xlByColumns, xlPrevious).Column
            EndRow = .Cells.Find("*", .Cells(1, 1), xlValues, xlWhole, xlByRows, xlPrevious).Row
                InsertCol = EndCol - 2
                CopyStart = EndCol - 5
                CopyEnd = EndCol - 3
                Set OrgRng = .Range(.Cells(2, CopyStart), .Cells(EndRow, CopyEnd))
                OrgRng.Copy
                .Cells(2, InsertCol).Insert xlShiftToRight, xlFormatFromLeftOrAbove
                .Cells(2, InsertCol).Value = ProductName
    
    
            '修改公式
            EndCol = EndCol + 3
       
            For i = 4 To EndRow - 2
                If Not .Cells(i, EndCol - 2).Formula Like "*SUM*" Then
                    Formula = "="
                    For j = 4 To EndCol - 3 Step 3
                        Formula = Formula & "+" & .Cells(i, j).Address
                    Next j
                    Formula = Replace(Formula, "+", "", , 1)
                    .Cells(i, EndCol - 2).Value = Formula
                End If
    
                If Not .Cells(i, EndCol - 1).Formula Like "*SUM*" Then
                    Formula = "="
                    For j = 5 To EndCol - 3 Step 3
                        Formula = Formula & "+" & .Cells(i, j).Address
                    Next j
                    Formula = Replace(Formula, "+", "", , 1)
                    .Cells(i, EndCol - 1).Value = Formula
                End If
    
                If Not .Cells(i, EndCol - 0).Formula Like "*SUM*" Then
                    Formula = "="
                    For j = 6 To EndCol - 3 Step 3
                        Formula = Formula & "+" & .Cells(i, j).Address
                    Next j
                    Formula = Replace(Formula, "+", "", , 1)
                    .Cells(i, EndCol - 0).Value = Formula
                End If
    
    
            Next i
        End With
    
        Set OrgRng = Nothing
    End Sub
      
    

      

  • 相关阅读:
    ADSL PPPoE出错详解及宽带连接中的一些错误代码含义
    2007年世界顶级防火墙排名(附下载地址)
    Asp.net Mvc问题索引
    .NET 操作GPRS Model的类库 ATSMS
    .NET 3.5多个工程编译的DOS命令
    Google Chrome浏览器JS执行效率惊人 实测比IE快十几倍
    FTP文件同步工具(FTP_File_Synchronizer) 源代码
    [转载] ORACLE中SQL查询优化研究
    ext的grid导出为excel 方法
    数据库分页SQL语句
  • 原文地址:https://www.cnblogs.com/nextseven/p/7138745.html
Copyright © 2011-2022 走看看