简体   繁体   English

Excel Vba,如何用另一个单元格更改单元格值?

[英]Excel Vba, How to change cell value with another cell?

A COLUMN                    B COLUMN                 NEW A COLUMN (A -> NEW A)
MN3312 XP XMR123 X123KV     XP XMR123 X123KV         XP XMR123 X123KV
IX3122 JM EMB105B MVLF      JM EMB105B MVLF          JM EMB105B MVLF
X891230 ME ROMD2111MD       ME ROMD2111MD            ME ROMD2111MD
P305875 LKX 81230 R123 KV   LKX 81230 R123 KV        LKX 81230 R123 KV
PL0123 28-8JMZKWI123NK      28-8JMZKWI123NK          28-8JMZKWI123NK
OXP8482 BKG 143 NKM KLP     BKG 143 NKM KLP          BKG 143 NKM KLP
Q309650 309 01DIQL ZBNQL    309 01DIQL ZBNQL         309 01DIQL ZBNQL

If the cell' value of A Column contains the cell's value of B Column, the cell's value of A column change to the cell's value of B column.如果 A 列的单元格值包含 B 列的单元格值,则 A 列的单元格值更改为 B 列的单元格值。

Could you figure it out by code that problem??...你能通过代码解决这个问题吗??...

AIM: the cell's value of A Column change to the cell's value of B Column (If contains the value of B column) And, I want to make use of "for -next"!目的:A 列的单元格值更改为 B 列的单元格值(如果包含 B 列的值)而且,我想使用“for -next”!

please, help me to make it!请帮我完成它!

Heavily commented so you know what is going on :) Just side scroll to see it.大量评论,所以你知道发生了什么:) 只需横向滚动即可查看。

You will need to define some of the variables to make this work correctly.您需要定义一些变量才能使其正常工作。 I have put everything you need to change in one place.我已经把你需要改变的一切都放在了一个地方。

Sub searchSegment()
' loops through all cells in column A, compare segements of cell string to column B, and if found replace column A with column B data

    ' declare variable types - immutable                                    do not modify
    Dim originWB As Workbook                                                ' origin workbook       - full name of the file containing data to be searched.
    Dim originWS As Worksheet                                               ' origin worksheet      - worksheet within origin workbook containing data to be searched.
    Dim searchWB As Workbook                                                ' search workbook       - full name of the file containing data to use as a search.
    Dim searchWS As Worksheet                                               ' search worksheet      - worksheet within search workbook containing data to use as a search.
    Dim originCol As String                                                 ' origin column         - column containing data to be searched.
    Dim searchCol As String                                                 ' search column         - column containing data to use as a search.
    Dim hdrStatus As Integer                                                ' header status         - define if top row contains header or data.
    Dim searchSegSize As Integer                                            ' search segment size   - consequtive characters making up the search segment.
    Dim searchSeg As String                                                 ' search segment        - piece of data checked against string. not constant / user defined.
    Dim i, j, n As Long                                                     ' loop variables        - used to iterate through loops. not user defined.
    Dim lRow As Long                                                        ' last row              - last row with data found in the origin column. not constant / user defined.
    Dim originRng As Range                                                  ' origin range          - varying location containing string to be searched. not constant / user defined.
    Dim searchRng As Range                                                  ' search range          - varying location containing search string. not constant / user defined.

    ' variables - mutable                                                   ok to modify
    Set originWB = Workbooks("SO.xlsm")                                     ' set the name of the origin workbook here
    Set originWS = originWB.Worksheets("Summary")                           ' set the name of the origin worksheet here
    Set searchWB = Workbooks("SO.xlsm")                                     ' set the name of the search workbook here
    Set searchWS = searchWB.Worksheets("Summary")                           ' set the name of the search worksheet here
    hdrStatus = 0                                                           ' 0 = no header, 1 = header
    searchSegSize = 4                                                       ' set number of characters in the search segment
    originCol = "A"                                                         ' set column of data being searched
    searchCol = "B"                                                         ' set column of data used as a search
    
    ' code - immutable                                                      do not modify
    lRow = originWS.Cells(originWS.Rows.Count, originCol).End(xlUp).Row     ' find the last row in originCol of the originWS object
    
    For i = (header + 1) To lRow                                            ' creates a For loop and declares i as each iteration (i = 1 then i = 2, etc)
        Set originRng = originWS.Range(originCol & i)                       ' sets varying range to locate string to be searched
        Set searchRng = originWS.Range(searchCol & i)                       ' sets varying range to locate string to be used as a search
        j = Round(Len(originRng), 0)                                        ' defines number of iterations for second (nested) loop
        For n = 1 To lRow                                                   ' second For loop to search string in x character segments. searchSegSize defined by user.
            If n = 1 Then                                                   ' first iteration starts searching string from character 1
                searchSeg = Mid(originRng, 1, searchSegSize)                ' define what to search for if iteration = 1
            Else
                searchSeg = Mid(originRng, 1 + n, searchSegSize)            ' define what to search for if iteration > 1
            End If
            If Len(searchSeg) < searchSegSize Then Exit For                 ' stop if the search segement is smaller than searchSegSize
            If InStr(1, originRng, searchSeg) > 0 Then                      ' if search segment is found then
                originRng.Value = searchRng.Value                           ' replace originCol with newly found data
                Exit For                                                    ' stop as action has been taken
            End If
        Next                                                                ' iterate to next search segment (nested loop)
    Next                                                                    ' iterate to next cell within defined range for primary loop
End Sub

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何使用另一个工作表中单元格内的单元格地址更改具有 Excel vba 的单元格的值? - How to change the value of a cell with Excel vba using a cell address that's inside a cell in another worksheet? Excel VBA-通过另一个单元格更改单元格值? - Excel VBA - Change cell value via another cell? Excel VBA 根据另一个单元格的值逐行更改一个单元格的值 - Excel VBA change the value of a cell based on the value of another cell row by row 如何使用 vba 根据 Excel 中另一张纸上的列表更改单元格的值? - How to change a cell's value using vba based off a list on another sheet in Excel? 使用 VBA 根据另一个单元格值设置 Excel 单元格值 - Setting Excel cell value based on another cell value using VBA 如果单元格值包含在另一个工作表中,则为Excel vba - Excel vba if cell value is included in another worksheet 使用VBA将单元格值复制到Excel中的另一个工作表 - Copying Cell Value to another sheet in Excel with VBA Excel VBA:如何更改上次使用的列中单元格的值? - Excel VBA: How to change value of cell in last used column? VBA Excel根据一个单元格的内容更改另一个单元格的内容 - VBA Excel Change Content of another Cell based on content of one cell 如何在Excel上将单元格值报告给另一个单元格 - How to report cell value to another cell on excel
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM