Using Excel 2010
Hello,
I need to count AD sets till they finds in any of the 2 upper and lower rows…, If there are number in both rows just highlight cell in colour red…, if both are blank result 0
Please help.
Regards,
Moti
Using Excel 2010
Hello,
I need to count AD sets till they finds in any of the 2 upper and lower rows…, If there are number in both rows just highlight cell in colour red…, if both are blank result 0
Please help.
Regards,
Moti
In cell 'C72' try;Formula:
=IFERROR(IF(COUNTIFS(C6:C7,"A.D")>0,B72+1,IF(ISNUMBER(SUM(C6:C7)),"",0)),1)
Then pull across.
You can also pull down, but need to adjust the range as the range is 2 rows.
Conditional formatting to for red cells applied only to first 4 rows where I entered the formula for you.
If your Question is answered; please mark it SOLVED. If you are happy with a member's solution, say 'Thanks' and click the 'Star' to Add Reputation.
@ORoos, formula does work but I have plenty of set more than 600+ so far will be difficult to apply formula for each set independently one by one. Any ways thank you for your help. Good Luck!
I will wait if anyone suggests VBA solution for this.
Kind Regards,
Moti
![]()
Option Explicit Sub demo4() Dim a, b Dim i As Long, j As Long, srow As Long, lrow As Long, orow As Long, n As Long Application.ScreenUpdating = False srow = 6: lrow = 67: orow = 72 ' <<<< change as required n = 0 For i = srow To lrow - 1 Step 3 For j = 3 To 44 If IsEmpty(Cells(i, j)) Then Cells(orow, j) = 0 Else If Cells(i, j) = "A.D" Or Cells(i + 1, j) = "A.D" Then n = n + 1 Cells(orow, j) = n Else If IsNumeric(Cells(i, j)) And IsNumeric(Cells(i + 1, j)) Then Cells(orow, j).Interior.Color = vbRed n = 0 End If End If End If Next j orow = orow + 1 Next i Application.ScreenUpdating = True End Sub
Change the highlighted code as required.
Last edited by JohnTopley; 04-08-2024 at 04:13 AM.
If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.
@JohnTopley, this is an all-in-one solution also thank you for giving easy and flexible range changes choice.
I appreciate your time to solve this problem. I wish you good day and good luck.
Kind Regards,
Moti![]()
Although John beat me to it, I post my solution anyway
You can also adjust the start of the Rows to analyze, and the row where the results start.
![]()
Option Explicit Sub ADcount() Dim vline1 As Long Dim i As Long: Dim j As Long: Dim x As Long Dim vStartRow As Long: Dim vResultRow As Long Dim vCounter As Long: Dim lRow As Long vStartRow = 6 ' << Start row to analyse vResultRow = 72 ' << Start row for result vCounter = 0 x = 44 lRow = Range("C" & Rows.Count).End(xlUp).Row ' Clear fprevious results Range("C" & vResultRow & ":AR80").Value = 0 ' Loop through each 'Result' row; For j = vResultRow To lRow ' Loop through each column for each row; For i = 3 To x If Cells(vStartRow, i).Value = "A.D" Or Cells(vStartRow + 1, i).Value = "A.D" Then vCounter = vCounter + 1 Cells(vResultRow, i).Value = vCounter Else If Cells(vStartRow, i).Value = "" And Cells(vStartRow + 1, i).Value = "" Then Cells(vResultRow, i).Value = 0 vCounter = 0 Else Cells(vResultRow, i).Value = "" vCounter = 0 End If End If Next i vResultRow = vResultRow + 1 ' << move to the next 'result' row vStartRow = vStartRow + 3 ' << set next block of data 3 lines down Next j End Sub
@ORoos, thank you for giving one more option. JTs code is bit more flexible; I wish you good day and good luck.
Kind Regards,
Moti![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks