select and check multiple cells

lugwisha

New Member
Joined
Jun 10, 2022
Messages
3
Office Version
  1. 2016
Platform
  1. Windows
hi, I'm new to Excel VBA. I am trying to write code that will select and check multiple cells. if cells contain a specific integer, then an assigned calculation would be done for the adjacent cells.
I've pasted below my latest attempt to archive the above-mentioned objective

Sub Rebar_total_length ()

Dim total As Integer

Dim A As Integer

Dim b As Integer

Dim c As Integer

Dim d As Integer

Dim e As Integer


total = Range("A5:a80")

If total = 38 Then

Range("g5:g80") = A + b + c

End If

End Sub
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Welcome to the Board!

Your code really does not make any sense. You have not set A, B, and C equal to anything.
Also, if you want to add the the values in a range, you need to use addition (+) or SUM. This will NOT sum up the values in a range:
VBA Code:
total = Range("A5:a80")

Let's forget about the code for a minute. Can you just please post a small sample of data, and explain exactly what you want to happen?

MrExcel has a tool called “XL2BB” that lets you post samples of your data that will allow us to copy/paste it to our Excel spreadsheets, so we can work with the same copy of data that you are. Instructions on using this tool can be found here: XL2BB Add-in

Note that there is also a "Test Here” forum on this board. This is a place where you can test using this tool (or any other posting techniques that you want to test) before trying to use those tools in your actual posts.
 
Upvote 0
thanks for reply and pardon me for the late response. I'm basically trying a set a specific calculation on multiple cells by checking if said cells contain a specific number, if yes, then a specific calculation will be assigned, if no then another calculation will be assigned and so on .ill now try and give an example.

If cell b1 is equal to 38 then a1 is equal to (cell c1 + cell d1 + cell e1) or if cell b1 is equal to 60 then cell a1 is equal to ((2 x cell c1) + (2 x cell d1) + 140) and so on for 40 other conditions. I have figured out how to do this for one cell (a1) but haven’t figured out how to repeat this function for all the cells below (a2 to a50).

I really hope I was able to explain, please find attached a data sample.
 

Attachments

  • sample.PNG
    sample.PNG
    2.7 KB · Views: 5
Upvote 0
You have 40 different conditions/formulas? Wow! That is going to be some long code!
I would recommend using a CASE statement, where you can list each value, and the formula for each (see: MS Excel: How to use the CASE Statement (VBA))

I would loop through the range of cells you want to apply this to, and make use of the OFFSET function, which allows you to check other columns of whatever row you are currently on (see: VBA Excel Range Cells and Offset)

Here is what that code might look like for your first two conditions.
You can keep adding more "Case" lines for your other conditions under the first two I already listed based upon your explanation.
VBA Code:
Sub Rebar_total_length()

    Dim cell As Range
    
    Application.ScreenUpdating = False
    
'   Loop through cells B1:B50
    For Each cell In Range("B1:B50")
'       Check value in column B
        Select Case cell.Value
'           Based on value in column B, calculate value and put in column A
            Case 38
                cell.Offset(0, -1).Value = cell.Offset(0, 1) + cell.Offset(0, 2) + cell.Offset(0, 3)
            Case 60
                cell.Offset(0, -1).Value = (cell.Offset(0, 1) * 2) + (cell.Offset(0, 2) * 2)
        End Select
    Next cell
    
    Application.ScreenUpdating = True
    
End Sub
 
Upvote 0
Solution
Thanks a lot, I copied the code and made some tweaks and it worked like a charm.
got to understand the offset function in detail and other conditional statements.
I really appreciate the help.
 
Upvote 0
You are welcome.
Glad I was able to help!
 
Upvote 0

Forum statistics

Threads
1,215,544
Messages
6,125,434
Members
449,223
Latest member
Narrian

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