Get range of values in Msgbox if criteria is met

sharky12345

Well-known Member
Joined
Aug 5, 2010
Messages
3,404
Office Version
  1. 2016
Platform
  1. Windows
I'm trying to find to get a series of values in a MsgBox if criteria is met.

If the value in Column F is 'Overdue' I need values from the same row populated in a Msgbox then a newline and then the next row of data that matches the criteria, so I would end up with 1 message with the values from every row that matches my criteria.

The problem I'm having is that the MsgBox only displays the first found range. This is what I have so far;

Code:
If cell.Offset(0, 5).Value = "Overdue" Then
OverDueWeeklyText = "Reg: " & cell.Offset(0, 1).Value & vbNewLine & _
"Vehicle: " & cell.Offset(0, 2).Value & vbNewLine & _
"Last recorded check: " & cell.Offset(0, 3).Value & vbNewLine & _
"Days since last check: " & cell.Offset(0, 4).Value
End If
Next
MsgBox "The following vehicles are shown as overdue their weekly checks;" & vbNewLine & vbNewLine & OverDueWeeklyText

Can someone point me in the right direction please?
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Try
Code:
OverDueWeeklyText = OverDueWeeklyText & vbNewLine & "Reg: " & cell.Offset(0, 1).Value & vbNewLine & _
"Vehicle: " & cell.Offset(0, 2).Value & vbNewLine & _
"Last recorded check: " & cell.Offset(0, 3).Value & vbNewLine & _
"Days since last check: " & cell.Offset(0, 4).Value
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,892
Messages
6,127,610
Members
449,389
Latest member
ChessManNaill

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