• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Using arrays and if statement condition

Hi,Can i ask you?. As you can see the image, There are 2 groups Range("A3:E7") and Range("A14:E18") . This is what i want to happen By using array " If each cell inside the Range("A3:E7")equals to A Then Range("A14:E18) get results True or False. Sorry im a noob.
 
Hi, a VBA demonstration as a beginner starter :​
Code:
Sub Demo1()
    [A14:E18] = [A3:E7="A"]
End Sub
Do you like it ? So thanks to click on bottom right Like !
 
Back
Top