vba code to return range values (text) to message box after autofilter

Nurzhan

Board Regular
Joined
Dec 13, 2017
Messages
60
Hallo. After using the autofilter, the visible cells text values should be returned on message box. My initial code is below. The problem is that it returns only 1st visible cell's value.

Code:
Sub Wood()Dim rngVisible As Range
Dim xStr As String


Set rngVisible = Range("A2:A" & Cells(Rows.Count, "A").End(xlUp).Row).SpecialCells(xlCellTypeVisible)
xStr = xStr & rngVisible.Value & vbTab


     Range("A1").AutoFilter field:=3, Criteria1:="Wood"
     MsgBox xStr, vbOKOnly, "Wooden Coasters"


End Sub
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
You need to loop through rngVisible, updating xStr each time
 
Upvote 0
Like
Code:
Sub Wood()
Dim rngVisible As Range
Dim xStr As String


For Each rngVisible In Range("A2:A" & Cells(Rows.Count, "A").End(xlUp).row).SpecialCells(xlCellTypeVisible)
   xStr = xStr & rngVisible.Value & vbTab
Next rngVisible

     Range("A1").AutoFilter field:=3, Criteria1:="Wood"
     MsgBox xStr, vbOKOnly, "Wooden Coasters"


End Sub
 
Upvote 0

Forum statistics

Threads
1,215,059
Messages
6,122,918
Members
449,094
Latest member
teemeren

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