Assign visible cells in range to variable

dougdrex

Board Regular
Joined
Sep 27, 2013
Messages
79
Using Excel 2010

I'm trying to assign the visible cells in a range to a variable after having filtered the data. However, I'm getting a Run-time error '13': Type Mismatch error.

Following is the pertinent code for the variable:

Code:
    Dim strMaker As String
    strMaker = Range("C2:C" & Cells(Rows.Count, "C").End(xlUp).Row).SpecialCells(xlCellTypeVisible)

I've been searching and trying possible solutions for several hours, but to no avail. Does anyone have any clues what I'm doing wrong? If it helps, the values in the cells to be assigned to the variable will end up being included in the "Cc" field of an Outlook email.


Thanks!
Doug
 
Last edited:
It needs to have a semicolon (";") between each value because those values will be passed to the "Cc" field of an outgoing email message. I hope that helps!
Here is a function that can be called either from other VB code or used as a UDF (user defined function) in a worksheet cell formula which will return the text in the visible cells delimited by the optional Delim argument (defaulted to a semi-colon, so you can omit it if you want, or change if it desired). The required first argument is a validly specified range. In your case that would be...

Range("C2", Cells(Rows.Count, "C").End(xlUp))

So, once you place the code below in a standard Module, you can assign the values you want to the strMaker variable like this...

strMaker = GetVisible(Range("C2", Cells(Rows.Count, "C").End(xlUp)))

from within your own VBA code. Alternately, you could place the value in a cell using this formula (where you would specify the correct range for your data)...

=GetVisible(C2:C10)

Here is the function code...
Code:
[table="width: 500"]
[tr]
	[td]Function GetVisible(Rng As Range, Optional Delim As String = ";") As String
  Dim strMaker As String, Cell As Range
  For Each Cell In Rng
    If Cell.EntireRow.Hidden = False Then GetVisible = GetVisible & " " & Cell.Value
  Next
  GetVisible = Replace(Application.Trim(GetVisible), " ", Delim)
End Function[/td]
[/tr]
[/table]
 
Last edited:
Upvote 0

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
So, you may need to do it in a kind of brute force method - as follows....

Sub MakeStringArray()
Dim x As Integer
Dim strMaker As String
Dim rng As Range

strMaker = ""
For Each rng In Range("C2:C" & Cells(Rows.Count, "C").End(xlUp).Row).SpecialCells(xlCellTypeVisible)
strMaker = strMaker & "; " & rng.value
Next

'test result
debug.print strMaker

End Sub
 
Upvote 0
Here is a function that can be called either from other VB code or used as a UDF (user defined function) in a worksheet cell formula which will return the text in the visible cells delimited by the optional Delim argument (defaulted to a semi-colon, so you can omit it if you want, or change if it desired). The required first argument is a validly specified range. In your case that would be...

Range("C2", Cells(Rows.Count, "C").End(xlUp))

So, once you place the code below in a standard Module, you can assign the values you want to the strMaker variable like this...

strMaker = GetVisible(Range("C2", Cells(Rows.Count, "C").End(xlUp)))

from within your own VBA code. Alternately, you could place the value in a cell using this formula (where you would specify the correct range for your data)...

=GetVisible(C2:C10)

Here is the function code...
Code:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Function GetVisible(Rng As Range, Optional Delim As String = ";") As String
  Dim strMaker As String, Cell As Range
  For Each Cell In Rng
    If Cell.EntireRow.Hidden = False Then GetVisible = GetVisible & " " & Cell.Value
  Next
  GetVisible = Replace(Application.Trim(GetVisible), " ", Delim)
End Function[/TD]
[/TR]
</tbody>[/TABLE]

Hi Rick,

Your solution looks like it will work best with the macro I'm building. But I do have one more question. I was using the strMaker variable to pass along the end result to the "Cc" field of an outgoing email message, but I don't understand how that variable is being used in the function code you provided. Can you explain and/or provide instructions for passing it to the "Cc" field? This beast is nearly finished, but I'm struggling with this last piece! :)
 
Upvote 0
Hi Rick,

I have applied the Function code to the different columns where the macro needs to capture the values to insert into the "Cc" field. However, it only captures the last value in the list of visible cells. Below is the code I ended up with:

Code:
Function GetVisibleMaker(rngMaker As Range, Optional Delim As String = "; ") As String  Dim strMaker As String, Cell As Range
  For Each Cell In rngMaker
    If Cell.EntireRow.Hidden = False Then GetVisibleMaker = GetVisible & " " & Cell.Value
  Next
  GetVisibleMaker = Replace(Application.Trim(GetVisibleMaker), " ", Delim)
End Function

strMaker = GetVisibleMaker(Range("C2", Cells(Rows.Count, "C").End(xlUp)))
 
Upvote 0
If Cell.EntireRow.Hidden = False Then GetVisibleMaker = GetVisible & " " & Cell.Value


should be:

If Cell.EntireRow.Hidden = False Then GetVisibleMaker = GetVisibleMaker & " " & Cell.Value



"GetVisible" should be "GetVisibleMaker"
 
Upvote 0
Hi Rick,

I have applied the Function code to the different columns where the macro needs to capture the values to insert into the "Cc" field. However, it only captures the last value in the list of visible cells. Below is the code I ended up with:

Code:
Function GetVisibleMaker(rngMaker As Range, Optional Delim As String = "; ") As String  Dim strMaker As String, Cell As Range
  For Each Cell In rngMaker
    If Cell.EntireRow.Hidden = False Then GetVisibleMaker = [B][COLOR="#FF0000"]GetVisible[/COLOR][/B] & " " & Cell.Value
  Next
  GetVisibleMaker = Replace(Application.Trim(GetVisibleMaker), " ", Delim)
End Function

strMaker = GetVisibleMaker(Range("C2", Cells(Rows.Count, "C").End(xlUp)))
When you changed the name of my function from GetVisible to GetVisibleMaker, you missed changing one occurrence of the function name (shown in red above).
 
Last edited:
Upvote 0
If Cell.EntireRow.Hidden = False Then GetVisibleMaker = GetVisible & " " & Cell.Value


should be:

If Cell.EntireRow.Hidden = False Then GetVisibleMaker = GetVisibleMaker & " " & Cell.Value



"GetVisible" should be "GetVisibleMaker"

That worked perfectly, thank you! :)

And thank you to everyone who helped. I'm finishing up the final details on the macro right now! :)


Doug
 
Upvote 0
Here is the function code...
Code:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Function GetVisible(Rng As Range, Optional Delim As String = ";") As String
  Dim strMaker As String, Cell As Range
  For Each Cell In Rng
    If Cell.EntireRow.Hidden = False Then GetVisible = GetVisible & " " & Cell.Value
  Next
  GetVisible = Replace(Application.Trim(GetVisible), " ", Delim)
End Function[/TD]
[/TR]
</tbody>[/TABLE]

Over the last few days, I've been trying to figure out how to make this function only pick up unique values that are visible, but have been unsuccessful. Is there a simple solution to make this code only pick up the unique values that are visible? I'm getting quite a few duplicates.

Thanks!
Doug
 
Upvote 0
Function GetVisible(Rng As Range, Optional Delim As String = ";") As String
Dim strMaker As String, Cell As Range
For Each Cell In Rng
If Cell.EntireRow.Hidden = False _
And InStr(GetVisible, Cell.Value) = 0 Then
GetVisible = GetVisible & " " & Cell.Value
End If
Next
GetVisible = Replace(Application.Trim(GetVisible), " ", Delim)
End Function
 
Upvote 0

Forum statistics

Threads
1,223,910
Messages
6,175,318
Members
452,634
Latest member
cpostell

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