Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have several thousand rows in my spreadsheet.
My question is that I want to look at the value of one column and based on its value, change the value of another column. I would I do this? -- Dirk |
#2
![]() |
|||
|
|||
![]()
From what to what?
-- HTH Bob Phillips "Dirk_Bob" wrote in message ... I have several thousand rows in my spreadsheet. My question is that I want to look at the value of one column and based on its value, change the value of another column. I would I do this? -- Dirk |
#3
![]() |
|||
|
|||
![]()
If the value in Cell 1 is "10" I want to change the value in Cell 2 to "Part"
-- Dirk "Bob Phillips" wrote: From what to what? -- HTH Bob Phillips "Dirk_Bob" wrote in message ... I have several thousand rows in my spreadsheet. My question is that I want to look at the value of one column and based on its value, change the value of another column. I would I do this? -- Dirk |
#4
![]() |
|||
|
|||
![]()
For i = 1 To Cells(Rows.Count,"A").End(xlUp).Row
If Cells(i,"A").Value = "10" Then Cells(i,"B").Value = "Part" End If Next i -- HTH Bob Phillips "Dirk_Bob" wrote in message ... If the value in Cell 1 is "10" I want to change the value in Cell 2 to "Part" -- Dirk "Bob Phillips" wrote: From what to what? -- HTH Bob Phillips "Dirk_Bob" wrote in message ... I have several thousand rows in my spreadsheet. My question is that I want to look at the value of one column and based on its value, change the value of another column. I would I do this? -- Dirk |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Running total w/2 columns - Excel | Excel Worksheet Functions | |||
Store values of a dynamically changing cell | Excel Worksheet Functions | |||
Column Chart with 2 values in each column | Charts and Charting in Excel | |||
Formula to compare multiple rows values based on another column? | Excel Worksheet Functions | |||
Can you average data in 1 column based on a range of values in another? | Excel Worksheet Functions |