ou81aswell
Board Regular
- Joined
- Oct 6, 2009
- Messages
- 50
I'm having a problem setting a Range.Value on a worksheet that has a Filter.
Here's an example worksheet (Sorry about the wonky spacing. I tried my best!)
<font size="2">Worksheet: Sheet1 UsedRange: $A$1:$B$7 Range: $A$1:$B$7</font><table border="1" cellspacing="2" cellpadding="3">
<tr>
<td width="40px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2"> </font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">A</font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">B</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA1_705"></a><font size="2">TYPE</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB1_705"></a><font size="2">VALUE</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">2</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA2_705"></a><font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB2_705"></a><font size="2">a</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA3_705"></a><font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB3_705"></a><font size="2">b</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">4</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA4_705"></a><font size="2">2</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB4_705"></a><font size="2">c</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">5</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA5_705"></a><font size="2">2</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB5_705"></a><font size="2">d</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">6</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA6_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB6_705"></a><font size="2">e</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">7</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA7_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB7_705"></a><font size="2">f</font>
</td>
</tr>
</table>
Here is the worksheet filtered by TYPE = 3
<table border="1" cellspacing="2" cellpadding="3">
<tr>
<td width="40px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2"> </font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">A</font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">B</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA1_705"></a><font size="2">TYPE</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB1_705"></a><font size="2">VALUE</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">6</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA6_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB6_705"></a><font size="2">e</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">7</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA7_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB7_705"></a><font size="2">f</font>
</td>
</tr>
</table><p />
If I run this macro with the filter applied I get unexpected results.
This code simply forces the text in the cells in column B to upper case.
I end up with the following sheet (auto filter is still on). I would have expected to see E and F instead of A and B:
<table border="1" cellspacing="2" cellpadding="3">
<tr>
<td width="40px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2"> </font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">A</font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">B</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA1_705"></a><font size="2">TYPE</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB1_705"></a><font size="2">VALUE</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">6</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA6_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB6_705"></a><font size="2">A</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">7</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA7_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB7_705"></a><font size="2">B</font>
</td>
</tr>
</table><p />
Here is the resulting sheet with autofilter off:
<table border="1" cellspacing="2" cellpadding="3">
<tr>
<td width="40px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2"> </font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">A</font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">B</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA1_705"></a><font size="2">TYPE</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB1_705"></a><font size="2">VALUE</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">2</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA2_705"></a><font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB2_705"></a><font size="2">a</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA3_705"></a><font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB3_705"></a><font size="2">b</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">4</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA4_705"></a><font size="2">2</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB4_705"></a><font size="2">c</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">5</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA5_705"></a><font size="2">2</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB5_705"></a><font size="2">d</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">6</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA6_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB6_705"></a><font size="2">A</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">7</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA7_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB7_705"></a><font size="2">B</font>
</td>
</tr>
</table><p />
Could anyone tell me how to get this to work (I would like all of the underlying cells to be upper cased) with the filter so I end up with the following:
<table border="1" cellspacing="2" cellpadding="3">
<tr>
<td width="40px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2"> </font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">A</font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">B</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA1_705"></a><font size="2">TYPE</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB1_705"></a><font size="2">VALUE</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">2</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA2_705"></a><font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB2_705"></a><font size="2">A</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA3_705"></a><font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB3_705"></a><font size="2">B</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">4</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA4_705"></a><font size="2">2</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB4_705"></a><font size="2">C</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">5</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA5_705"></a><font size="2">2</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB5_705"></a><font size="2">D</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">6</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA6_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB6_705"></a><font size="2">E</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">7</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA7_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB7_705"></a><font size="2">F</font>
</td>
</tr>
</table><p />
Thanks.
Here's an example worksheet (Sorry about the wonky spacing. I tried my best!)
<font size="2">Worksheet: Sheet1 UsedRange: $A$1:$B$7 Range: $A$1:$B$7</font><table border="1" cellspacing="2" cellpadding="3">
<tr>
<td width="40px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2"> </font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">A</font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">B</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA1_705"></a><font size="2">TYPE</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB1_705"></a><font size="2">VALUE</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">2</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA2_705"></a><font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB2_705"></a><font size="2">a</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA3_705"></a><font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB3_705"></a><font size="2">b</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">4</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA4_705"></a><font size="2">2</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB4_705"></a><font size="2">c</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">5</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA5_705"></a><font size="2">2</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB5_705"></a><font size="2">d</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">6</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA6_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB6_705"></a><font size="2">e</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">7</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA7_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB7_705"></a><font size="2">f</font>
</td>
</tr>
</table>
Here is the worksheet filtered by TYPE = 3
<table border="1" cellspacing="2" cellpadding="3">
<tr>
<td width="40px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2"> </font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">A</font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">B</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA1_705"></a><font size="2">TYPE</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB1_705"></a><font size="2">VALUE</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">6</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA6_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB6_705"></a><font size="2">e</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">7</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA7_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB7_705"></a><font size="2">f</font>
</td>
</tr>
</table><p />
If I run this macro with the filter applied I get unexpected results.
This code simply forces the text in the cells in column B to upper case.
Code:
Sub Test()
Dim oRange As Excel.Range
Set oRange = Application.Range("B2:B7")
Dim Cells
Cells = oRange.Value
Dim nRows
nRows = oRange.Rows.Count
Dim r
For r = 1 To nRows
Cells(r, 1) = UCase(Cells(r, 1))
Next r
oRange.Value = Cells
End Sub
I end up with the following sheet (auto filter is still on). I would have expected to see E and F instead of A and B:
<table border="1" cellspacing="2" cellpadding="3">
<tr>
<td width="40px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2"> </font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">A</font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">B</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA1_705"></a><font size="2">TYPE</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB1_705"></a><font size="2">VALUE</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">6</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA6_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB6_705"></a><font size="2">A</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">7</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA7_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB7_705"></a><font size="2">B</font>
</td>
</tr>
</table><p />
Here is the resulting sheet with autofilter off:
<table border="1" cellspacing="2" cellpadding="3">
<tr>
<td width="40px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2"> </font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">A</font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">B</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA1_705"></a><font size="2">TYPE</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB1_705"></a><font size="2">VALUE</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">2</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA2_705"></a><font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB2_705"></a><font size="2">a</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA3_705"></a><font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB3_705"></a><font size="2">b</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">4</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA4_705"></a><font size="2">2</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB4_705"></a><font size="2">c</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">5</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA5_705"></a><font size="2">2</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB5_705"></a><font size="2">d</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">6</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA6_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB6_705"></a><font size="2">A</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">7</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA7_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB7_705"></a><font size="2">B</font>
</td>
</tr>
</table><p />
Could anyone tell me how to get this to work (I would like all of the underlying cells to be upper cased) with the filter so I end up with the following:
<table border="1" cellspacing="2" cellpadding="3">
<tr>
<td width="40px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2"> </font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">A</font>
</td>
<td width="100px" align="center" valign="top" style="background-color:#eeeeee;">
<font size="2">B</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA1_705"></a><font size="2">TYPE</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB1_705"></a><font size="2">VALUE</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">2</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA2_705"></a><font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB2_705"></a><font size="2">A</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA3_705"></a><font size="2">1</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB3_705"></a><font size="2">B</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">4</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA4_705"></a><font size="2">2</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB4_705"></a><font size="2">C</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">5</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA5_705"></a><font size="2">2</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB5_705"></a><font size="2">D</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">6</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA6_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB6_705"></a><font size="2">E</font>
</td>
</tr>
<tr>
<td width="40px" style="background-color:#eeeeee;">
<font size="2">7</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cA7_705"></a><font size="2">3</font>
</td>
<td width="100px" style="background-color:#ffffff;">
<a name="cB7_705"></a><font size="2">F</font>
</td>
</tr>
</table><p />
Thanks.