Hi:
You can use array formulas as well, there are different ways to skin a cat. However, the array formula you had used was wrong, search the net for index array formula to get the right syntax.
Thanks
Hi:
This is a basic level VBA, there are hundreds of solutions available on various forums for this. I did not learn excel or VBA in one day, I don't even have an IT background unless you try to figure out solutions on your own you are not going to learn. I am talking from experience.
Thanks
Hi:
This is a simple if condition please give a search in Google and find a solution. After posting around 94 messages here I would expect you to at least try to find a solution before blankly asking here only because its a free service.
Thanks
May be this?
Private Sub Worksheet_Change(ByVal Target As Range)
Application.ScreenUpdating = False
With Sheet1
On Error Resume Next
.ShowAllData
i& = .Cells(Rows.Count, 1).End(xlUp).Row
If Not Intersect(ActiveCell, .Range("A2:A2")) Is Nothing Then
If .[A2] <>...
Another method
Sub blah()
With Sheet1
i& = .Cells(Rows.Count, 1).End(xlUp).Row
.[J2].Resize(i - 1).Formula = "=IF(H2=""NO"",""NO Part Reqd"",""Yes part Reqd"")"
End With
End Sub
Thanks
Hi:
Its difficult to fully comprehend what your file look like without a sample. Have you tried advanced filter options?
https://www.techrepublic.com/blog/microsoft-office/how-to-use-and-and-or-operators-with-excels-advanced-filter/
Thanks