As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
This depends on the error checking configuration in Excel at the client. From webfocus side one thing that can be done is change the field format to numeric. So numbers are interpreted appropriately in Excel. However if the field format has to be 'TEXT' in Excel, I don't think any thing can be done from webfocus. User has to change his configuration in excel or alternately opt to choose "Ignore error" for all such cells. Interestingly VBA also doesn't seem to have a method to supress this error check for specific cells!
Posts: 38 | Location: India | Registered: May 18, 2005
This was a very irritating feature introduced by Microsoft who decided that numbers are not legal text items.
There are only two options available
1 Either, manually change the option setting under error checking. (tools/options/error checking) 2 If using 7.1 use a template to set the option for you.
Option 2 is probably the best as it does not require user action.
The macro code required is very simple
Sub Macro1() Application.ErrorCheckingOptions.NumberAsText = False End Sub
the same code but using true as it's value as a close macro totally resolves the issue of Microsoft excels inability to have an option apply to the current sheet only.