Syntax

expression.TextFilePromptOnRefresh

expression A variable that represents a QueryTable object.

Remarks

Use this property only when your query table is based on data from a text file (with the property set to xlTextImport).

If the value of this property is True, the dialog box doesn't appear the first time a query table is refreshed.

The default value is True in the user interface.

Example

This example prompts the user for the name of the text file whenever the query table on the first worksheet in the first workbook is refreshed.

Visual Basic for Applications
Set shFirstQtr = Workbooks(1).Worksheets(1) Set qtQtrResults = shFirstQtr.QueryTables _ .Add(Connection := "TEXT;C:\My Documents\19980331.txt", _ Destination := shFirstQtr.Cells(1,1)) With qtQtrResults .TextFileParseType = xlDelimited .TextFilePromptOnRefresh = True .TextFileTabDelimiter = True .Refresh End With
text file prompt on refresh Text File Prompt On Refresh Property textfileprompt textfileprompton TextFilePromptOnRefresh TextFilePromptOnRefresh Property

See also: