Syntax

expression.WebConsecutiveDelimitersAsOne

expression A variable that represents a QueryTable object.

Remarks

Use this property only when the query table's property is set to xlWebQuery, the query returns an HTML document, and the property is set to True.

Example

This example sets the space character to be the delimiter in the query table on the first worksheet in the first workbook, and then it refreshes the query table. Consecutive spaces are treated as a single space.

Visual Basic for Applications
Set shFirstQtr = Workbooks(1).Worksheets(1) Set qtQtrResults = shFirstQtr.QueryTables _ .Add(Connection := "URL;http://datasvr/98q1/19980331.htm", _ Destination := shFirstQtr.Cells(1,1)) With qtQtrResults .WebConsecutiveDelimitersAsOne = True .Refresh End With
web web consecutive delimiters as one Web Consecutive Delimiters As One Property webconsecutive WebConsecutiveDelimiterAsOne WebConsecutiveDelimiterAsOne Property webconsecutivedelimiters webconsecutivedelimitersas webconsecutivedelimitersasone WebConsecutiveDelimitersAsOne Property

See also: