Excel macro-replace content

Source: Internet
Author: User

Replace execution where the table data meets the conditions.

Tools-> macros-> VB compile macros, create modules, and write the followingCode. Set the macro security to a lower level and run the macro.

Sub macro 1 ()
'
'Macro 1 macro
'
Counter = 4
Do While counter <= 2187
N = 1
For n = 1 to 9
If sheets ("Vehicle Routing identification by model in December"). Range ("D" & Counter) = sheets ("toll station"). Range ("A" & N) then
Sheets ("Vehicle Routing identification by model in December"). Range ("e" & Counter) = sheets ("toll station"). Range ("B" & N)
End if

Next n
Counter = counter + 1
Loop

End sub

Different data types may cause macro problems. For example, if the above type is compared with the numeric type, the type must be modified to be consistent.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.