![]() |
|
|
Welcome to the { mindfrost82.com } forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
Excel Formula Troubles
I'm having trouble with excel formulas.......
If i have a large table with numerical data and i am interested in writing a formula that will take all cells with #'s greater then 2 and replacing that # with the word "Up". Is this possible? Any Feedback is appreciated Thanks!! |
|
|||
|
Re: Excel Formula Troubles
Formulas cannot replace values in another cell.
They can only return results into the cell in which they are written. You would need a macro to replace. Sub change_to_Up() Dim rr As Range For Each rr In Selection If rr.Value > 2 Then rr.Value = "Up" End If Next rr End Sub Gord Dibben MS Excel MVP On Tue, 8 Jul 2008 10:08:54 -0700 (PDT), Patrick.Killela@gmail.com wrote: >I'm having trouble with excel formulas....... > > If i have a large table with numerical data and i am interested in >writing a formula that will take all cells with #'s greater then 2 and >replacing that # with the word "Up". > >Is this possible? > >Any Feedback is appreciated > >Thanks!! |
![]() |
|
| Thread Tools | Search this Thread |
| Display Modes | |
|
|