+ Reply to Thread
Results 1 to 4 of 4

Range % Increase

  1. #1
    Steve C
    Guest

    Range % Increase

    I want to be able to select any given range of cells in my spreadsheet as
    necessary and increase the numbers already in them by a percentage that I
    type into an InputBox. I'm familiar with the code for an Inputbox, but I'm
    struggling with how to tell Excel to move to each of the selected cells and
    perform the increase. The selected cells won't usually be in the same row or
    column, but rathered scattered about. Thanks!

    Steve C.

  2. #2
    chijanzen
    Guest

    RE: Range % Increase

    Steve:

    try,

    Dim rng As Range
    p = InputBox("Input a percentage ", , 10)
    For Each rng In Selection
    rng.Value = rng.Value * Val(p)
    Next

    --
    天行健,君*以自強不息
    地勢坤,君*以厚德載物

    http://www.vba.com.tw/plog/


    "Steve C" wrote:

    > I want to be able to select any given range of cells in my spreadsheet as
    > necessary and increase the numbers already in them by a percentage that I
    > type into an InputBox. I'm familiar with the code for an Inputbox, but I'm
    > struggling with how to tell Excel to move to each of the selected cells and
    > perform the increase. The selected cells won't usually be in the same row or
    > column, but rathered scattered about. Thanks!
    >
    > Steve C.


  3. #3
    Gary Keramidas
    Guest

    Re: Range % Increase

    untested, but you shouldn't have to select the range.

    just

    for each cell in rng.Name
    cell.value = cell.value*(your%)
    next cell

    --


    Gary


    "Steve C" <SteveC@discussions.microsoft.com> wrote in message
    news:1E832D2C-5C7C-4FFD-A1E9-90CE3FBEE8F5@microsoft.com...
    >I want to be able to select any given range of cells in my spreadsheet as
    > necessary and increase the numbers already in them by a percentage that I
    > type into an InputBox. I'm familiar with the code for an Inputbox, but
    > I'm
    > struggling with how to tell Excel to move to each of the selected cells
    > and
    > perform the increase. The selected cells won't usually be in the same row
    > or
    > column, but rathered scattered about. Thanks!
    >
    > Steve C.




  4. #4
    Steve C
    Guest

    RE: Range % Increase

    Thanks! I will give it a try!

    "chijanzen" wrote:

    > Steve:
    >
    > try,
    >
    > Dim rng As Range
    > p = InputBox("Input a percentage ", , 10)
    > For Each rng In Selection
    > rng.Value = rng.Value * Val(p)
    > Next
    >
    > --
    > 天行健,君*以自強不息
    > 地勢坤,君*以厚德載物
    >
    > http://www.vba.com.tw/plog/
    >
    >
    > "Steve C" wrote:
    >
    > > I want to be able to select any given range of cells in my spreadsheet as
    > > necessary and increase the numbers already in them by a percentage that I
    > > type into an InputBox. I'm familiar with the code for an Inputbox, but I'm
    > > struggling with how to tell Excel to move to each of the selected cells and
    > > perform the increase. The selected cells won't usually be in the same row or
    > > column, but rathered scattered about. Thanks!
    > >
    > > Steve C.


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1