Prioritize rows based on info in cells

Olavfinnerud

New Member
Joined
Jun 7, 2022
Messages
16
Office Version
  1. 2021
Platform
  1. Windows
Hi, I have a spread sheet that is used for storing potential building projects See ( image). I want to get a VBA code that prioritize the projects based on information in the D column, F column and P column.

1. If D contains "Offentlig", F contains either "Skolebygg", "Helsebygg", "Offentlig formålsbygg", "Offentlig næring", "Barnehage" or "Kultur" and P contains a date that is less than one year ahead 1 should appear in the B column.
2. If D contains "Privat", F contains "Industri" or "Næring" and P contains a date that is less than one year ahead 2 should appear in the B column.

I tried to do this for several ours but i am unsuccsessful. It would be much appreciated if someone could help me out. Thank you in advance!

The code i have now is:

VBA Code:
Sub FindAndMarkCombinationsWithDateCheck()
    Dim findRng As Range
    Dim findStr1 As String
    Dim findStr2 As String
    Dim foundCell As Range
    Dim firstMatch As String
    Dim foundInRow As Long
    Dim ws As Worksheet
    Dim lastRow As Long

    Set ws = ThisWorkbook.Sheets("sheet1")
    
    Set findRng = ws.Range("D:D")
    findStr1 = "Offentlig"
    findStr2 = "Skolebygg"

    Dim checkValues As Variant
    checkValues = Array("Helsebygg", "Offentlig formålsbygg", "Offentlig næring", "Barnehage", "Kultur")

    Set foundCell = findRng.Find(what:=findStr1, LookIn:=xlFormulas, MatchCase:=False, lookat:=xlWhole)

    Do While Not foundCell Is Nothing
        firstMatch = foundCell.Address
        foundInRow = foundCell.Row
        
        If ws.Cells(foundInRow, "F").Value = findStr2 Then
          
            Dim dateInColumnP As Date
            dateInColumnP = ws.Cells(foundInRow, "P").Value
            If DateDiff("yyyy", Date, dateInColumnP) < 1 Then
              
                Dim cellValue As String
                cellValue = ws.Cells(foundInRow, "D").Value
                If IsInArray(cellValue, checkValues) Then
                  
                    ws.Cells(foundInRow, "B").Value = 3
                End If
            End If
        End If

      
        Set foundCell = findRng.FindNext(foundCell)

        
        If foundCell.Address = firstMatch Then Exit Do
    Loop
    

    If ws.Cells(1, "B").Value = "" Then
        MsgBox "Combination not found"
    End If
End Sub

Function IsInArray(val As String, arr As Variant) As Boolean
    Dim item As Variant
    For Each item In arr
        If val = item Then
            IsInArray = True
            Exit Function
        End If
    Next item
    IsInArray = False
End Function
 

Attachments

  • Skjermbilde.PNG
    Skjermbilde.PNG
    83.4 KB · Views: 3

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
I suggest you to add a new hidden column with all conditions you've mentioned, generating a numeric result regarding the order you need, and then sort your range based in that column.
 
Upvote 0

Forum statistics

Threads
1,215,093
Messages
6,123,068
Members
449,091
Latest member
remmuS24

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