Change column value

wikus

Active Member
Joined
May 2, 2010
Messages
320
Office Version
  1. 365
I would appreciate some help.
I've got a sheet with 13 columns and would like to change 12 columns dependant on the frist column.
If column A = "ABC" then amounts in columns B:M must be multiplied by -1.
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Code:
Sub ABCmultiply()
    Dim i As Long
    Dim rng As Range
    
    Set rng = Range(Cells(1, 1), Cells(Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row, 13))
    For i = 1 To rng.Rows.Count
        If rng.Cells(i, 1).Value = "ABC" Then Range(Cells(i, 2), Cells(i, 13)).Value = Evaluate(Range(Cells(i, 2), Cells(i, 13)).Address & "*-1")
    Next i
End Sub

try this, you may need to amend slightly depending on header rows etc
 
Upvote 0

Forum statistics

Threads
1,224,564
Messages
6,179,548
Members
452,927
Latest member
rows and columns

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top