Find max cell within range, copy cell, clear copied cell contents, paste on another sheet.

TehTOECUTTER

New Member
Joined
May 22, 2017
Messages
13
Hello,

I am having trouble determining the code for this logic:

-Select sheet2
-If Sum of CN16:CN24 > 0 Then
-Select cell with max value within range CN16:CN24
-Copy cell contents
-Clear cell contents (important)
-Select sheet1
-Paste copied value in cell G5

Thanks for any help!
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Try this:
Code:
Sub MyMacro()

    Dim myRange As Range
    Dim myMax As Double
    Dim cell As Range
    
    Set myRange = Sheets("Sheet2").Range("CN16:CN24")
    
    If Application.WorksheetFunction.Sum(myRange) > 0 Then
        myMax = Application.WorksheetFunction.Max(myRange)
        For Each cell In myRange
            If cell = myMax Then
                cell.ClearContents
                Sheets("Sheet1").Range("G5") = myMax
            End If
        Next cell
    End If
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,399
Latest member
alchavar

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