[sc-issues] [Issue 66590] OOo-Calc String Function: Find

2007-06-08 Thread nn
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=66590


User nn changed the following:

What|Old value |New value

  Issue type|PATCH |ENHANCEMENT





--- Additional comments from [EMAIL PROTECTED] Fri Jun  8 14:25:58 + 
2007 ---
This is similar to issue 76156. We don't want too many new internal functions,
and type patch should be limited to complete patches.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sc-issues] [Issue 66590] OOo-Calc String Function: Find

2007-05-21 Thread gercokees
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=66590





--- Additional comments from [EMAIL PROTECTED] Mon May 21 08:19:48 + 
2007 ---
*** Issue 77481 has been marked as a duplicate of this issue. ***

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sc-issues] [Issue 66590] OOo-Calc String Function: Find

2007-04-10 Thread fst
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=66590


User fst changed the following:

What|Old value |New value

  Issue type|ENHANCEMENT   |PATCH





--- Additional comments from [EMAIL PROTECTED] Tue Apr 10 08:53:50 + 
2007 ---
Hi Niklas,

please have a look at this patch.

Frank

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sc-issues] [Issue 66590] OOo-Calc String Function: Find

2007-04-10 Thread fst
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=66590


User fst changed the following:

What|Old value |New value

 Assigned to|requirements  |nn





--- Additional comments from [EMAIL PROTECTED] Tue Apr 10 08:54:22 + 
2007 ---
.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sc-issues] [Issue 66590] OOo-Calc String Function: Find

2007-04-05 Thread discoleo
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=66590


User discoleo changed the following:

What|Old value |New value

 Attachment data|  |Created an attachment (id=
|  |44238)
Patch Implementing 
|  |an ScFindEx() function






--- Additional comments from [EMAIL PROTECTED] Thu Apr  5 20:47:42 + 
2007 ---
Created an attachment (id=44238)
Patch Implementing an ScFindEx() function


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sc-issues] [Issue 66590] OOo-Calc String Function: Find

2007-04-05 Thread discoleo
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=66590





--- Additional comments from [EMAIL PROTECTED] Thu Apr  5 20:58:09 + 
2007 ---
The patch implements a more advanced FIND() function with the following
characteristics:

DESCRIPTION
 - string starts at position 1
 - ends at =LEN(string)

1. IF string is NOT found, it returns 0 instead of an ERROR, therefore greatly
simplifying complex operations with strings!

2. one can explicitly specify the START position within the string
   - IF START  1, it automatically sets the START = 1

3. one can explicitly specify the END position within the string
   - IF END  LEN(string), it automatically sets END = LEN(string)

4. IF( START  END), it returns 0

By defining a START and END position, searching inside strings is greatly
simplified. There is NO need to first compute a substring; rather it is possible
to specify the substring directly inside the FindEx() function.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sc-issues] [Issue 66590] OOo-Calc String Function: Find

2006-10-26 Thread kohei
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=66590





--- Additional comments from [EMAIL PROTECTED] Thu Oct 26 09:32:41 -0700 
2006 ---
I would rather it returns -1 instead of 0 if the string is not found.  In this
specific case returning 0 may be okay, but too many of us are too used to
0-based positioning scheme (i.e. the value of 0 corresponds with the first
column), relying on zero for the not found condition makes me feel uneasy.

Just my opinion.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sc-issues] [Issue 66590] OOo-Calc String Function: Find

2006-07-10 Thread fst
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=66590


User fst changed the following:

What|Old value |New value

 Assigned to|spreadsheet   |requirements

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW

  Issue type|DEFECT|ENHANCEMENT

Target milestone|---   |OOo Later





--- Additional comments from [EMAIL PROTECTED] Mon Jul 10 07:14:51 -0700 
2006 ---
One for the requirements team

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]