Help with vba code please

Get_Involved

Active Member
Joined
Jan 26, 2007
Messages
383
I have two worksheets named “Bid Calculator” and “Legend”.

I am looking for vbcode to take the number from the “Legend R4” and place in cell C29 of the “Bid Calculator” this is the first step.

There are 5 cells in the row “Bid Calculator C29:G29”

In the worksheet “Legend R4” I have a number let’s say “1”.

Let’s move the “1” to “Bid Calculator C29”

In cell D29 there will be “2”, cell E29 there will be “3”, cell F29 there will be “blank”, cell G29 there will be “blank”.

There will be times that some of the cells after C29 will be blank, so I need the MAX number in the row to be placed in “Legend R4”.

So the next time I open the workbook and update the numbers, “Legend R4” the update goes back to “Bid Calculator C29”.
The answer should be from the example above = 4, in the new update.

I know that will be a cell reference if I code the cell.

Hoping it can be done in vbcode.

Appreciate any help
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Hello,

Not quite sure how you get the number 4 to be copied, isn't it 3? Also not sure when you want the code to run.

Code:
Sub COPY()
    Sheets("Legend").Range("R4").COPY Sheets("Bid Calculator").Range("C29")
    With Sheets("Bid Calculator")
        For MY_COUNT = 3 To 7
            If Cells(29, MY_COUNT).Value > MY_NO Then
                MY_NO = Cells(29, MY_COUNT).Value
            End If
        Next MY_COUNT
    End With
    Sheets("Legend").Range("R4").Value = MY_NO
End Sub

Is this code of any use?
 
Upvote 0
onlyadrafter: Thanks for the reply

That’s a good start.

Starting with the Number 1 in Legend R4 when I reopen the workbook and update it the right number 2 is in Bid Calculator C29.

Let’s say I use two more columns D29 will have number 3 in it, and E29 will have the number 4 in it.

Using starting Legend R4 as 1 plus the max number from the Bid Calculator C29:G29 would be in E29.
E29 needs to sum in the (Legend R4+E29) = 5.

Hope that makes sense.

I actually need it to change the value when reopening workbook after updating, I am using it as a template.

I have a button that creates a new workbook after updating.
Thanks
 
Last edited:
Upvote 0
Hello,

Still don't quite follow.

Code:
Private Sub Workbook_Open()
    Sheets("Legend").Range("R4").COPY Sheets("Bid Calculator").Range("C29")
    With Sheets("Bid Calculator")
        For MY_COUNT = 3 To 7
            If Not (IsEmpty(.Cells(29, MY_COUNT).Value)) Then
            A = Sheets("Legend").Range("R4").Value
                MY_NO = .Cells(29, MY_COUNT).Value + Sheets("Legend").Range("R4").Value
            End If
        Next MY_COUNT
    End With
    Sheets("Legend").Range("R4").Value = MY_NO
End Sub

This code needs to go into the THIS WORKBOOK code window, not a standard module.

Any closer?
 
Upvote 0
its working, but not adding the MAX number from (Bid Calculator C29:G29) back to the number in Legend R4 before updating.
Maybe it needs to do it after updating.
 
Upvote 0
Hello,

Does adding this code to the Bid Calculator code window resolve it?

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Intersect(Target, Range("C29:G29")) Is Nothing Then Exit Sub
        For MY_COUNT = 3 To 7
            If Not (IsEmpty(Cells(29, MY_COUNT).Value)) Then
                MY_NO = Cells(29, MY_COUNT).Value + Sheets("Legend").Range("R4").Value
            End If
        Next MY_COUNT
    Sheets("Legend").Range("R4").Value = MY_NO
End Sub

still not 100% clear of what you are trying to achieve though.
 
Upvote 0
onlyadrafter: Thanks
Don’t look like it’s going to work this way.
So how about let’s just do this, rewrite the code to get the max number from “Bid Calculator C29:G29”, and place that number in the “Legend R4”.
I think I can make it work that way also.
Much simpler hu.
 
Upvote 0
Hi,

Code:
Sub COPY()
    With Sheets("Bid Calculator")
        For MY_COUNT = 3 To 7
            If Cells(29, MY_COUNT).Value > MY_NO Then
                MY_NO = Cells(29, MY_COUNT).Value
            End If
        Next MY_COUNT
    End With
    Sheets("Legend").Range("R4").Value = MY_NO
End Sub

i assume you cant have formulai n in LEGEND R4, =MAX('Bid Calculator'!C29:G29)

or try

Code:
Sub copy1()
    Sheets("Legend").Range("R4").Formula = "=MAX('Bid Calculator'!C29:G29)"
    Sheets("Legend").Range("R4").copy
    Sheets("Legend").Range("R4").PasteSpecial (xlPasteValues)
End Sub

or even

Code:
Sub copy1()
    Sheets("Legend").Range("R4").Formula = "=MAX('Bid Calculator'!C29:G29)"
End Sub
 
Last edited:
Upvote 0
when I use the =MAX('Bid Calculator'!C29:G29) Legend it give me a circular reference, that's the reason I thought VBCode would do the trick.
Looks like I am going to have to manual put the numbers in r4 with the max number in Bid Calculator, and hope I don't fat finger a number.
Thanks for your help
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,473
Messages
6,130,838
Members
449,597
Latest member
buikhanhsang

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