Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Office 2007 Bizarre =@sum() formula BUG - generates mailto: hyperl

Using =@sum(a1:a3) or any formula will automatically generate an EMAIL
hyperlink.

We also use Infopath. When you are in a rich text format control, and you
type =@sum(a1:a3) and hit enter after the closing paragraph character, it
generates a mailto: hyperlink.

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Office 2007 Bizarre =@sum() formula BUG - generates mailto: hyperl

@ was used by Lotus 123 as the function indicator.

@ is also the character used in an email address.

If you're using Excel, stop using @sum().

If your formula starts with that function, then use an equal sign:
=sum(a1:a10)

If your formula contains that function, you don't need it:

=if(a17,sum(b1:b12),average(c1:c9))

========
If you really must continue the use of @ (fingers won't stop typing it????), you
can turn off the feature that turns those strings into hyperlinks:

Tools|Autocorrect options|Autoformat as you type tab
Uncheck that "replace as you type" option (Internet and network paths with
hyperlinks)

funnybroad wrote:

Using =@sum(a1:a3) or any formula will automatically generate an EMAIL
hyperlink.

We also use Infopath. When you are in a rich text format control, and you
type =@sum(a1:a3) and hit enter after the closing paragraph character, it
generates a mailto: hyperlink.


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Office 2007 Bizarre =@sum() formula BUG - generates mailto: hy

Correct me if I'm wrong, but isn't it still a bug, since =@whatever isn't a
valid internet email address anyway?

"Dave Peterson" wrote:

@ was used by Lotus 123 as the function indicator.

@ is also the character used in an email address.

If you're using Excel, stop using @sum().

If your formula starts with that function, then use an equal sign:
=sum(a1:a10)

If your formula contains that function, you don't need it:

=if(a17,sum(b1:b12),average(c1:c9))

========
If you really must continue the use of @ (fingers won't stop typing it????), you
can turn off the feature that turns those strings into hyperlinks:

Tools|Autocorrect options|Autoformat as you type tab
Uncheck that "replace as you type" option (Internet and network paths with
hyperlinks)

funnybroad wrote:

Using =@sum(a1:a3) or any formula will automatically generate an EMAIL
hyperlink.

We also use Infopath. When you are in a rich text format control, and you
type =@sum(a1:a3) and hit enter after the closing paragraph character, it
generates a mailto: hyperlink.


--

Dave Peterson

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Office 2007 Bizarre =@sum() formula BUG - generates mailto: hy

I don't know if it's a bug--or a feature. It's a fine line <vbg.

If you don't want to stop using that @ in your functions, how about hitting
ctrl-z (edit|Undo) right after it's turned into a hyperlink?



funnybroad wrote:

Correct me if I'm wrong, but isn't it still a bug, since =@whatever isn't a
valid internet email address anyway?

"Dave Peterson" wrote:

@ was used by Lotus 123 as the function indicator.

@ is also the character used in an email address.

If you're using Excel, stop using @sum().

If your formula starts with that function, then use an equal sign:
=sum(a1:a10)

If your formula contains that function, you don't need it:

=if(a17,sum(b1:b12),average(c1:c9))

========
If you really must continue the use of @ (fingers won't stop typing it????), you
can turn off the feature that turns those strings into hyperlinks:

Tools|Autocorrect options|Autoformat as you type tab
Uncheck that "replace as you type" option (Internet and network paths with
hyperlinks)

funnybroad wrote:

Using =@sum(a1:a3) or any formula will automatically generate an EMAIL
hyperlink.

We also use Infopath. When you are in a rich text format control, and you
type =@sum(a1:a3) and hit enter after the closing paragraph character, it
generates a mailto: hyperlink.


--

Dave Peterson


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Office 2007 Bizarre =@sum() formula BUG - generates mailto: hy

It's not actually for me, personally. I am the project manager my
corporation's enterprise rollout of Office 2007 to 30,000+ workstations
located all over the globe.

This particular issue was reported by one of our pilot users... an
electrical engineer who is obviously accustomed to putting an '@' in his sum
formulas.

It's next to impossible to tell how many more of our 30,000 users will
stumble across this "feature" when they are migrated to Office 2007.

I guess since this is a "feature" and since it sounds like "=@whatever"
should be considered an email address (I still disagree... unless the user
types a dot after the 'whatever'), I will direct my migration team to include
the following 'bullet' in the already huge list of what the users will have
to adjust to when they migrate to Office 2007:

Stop using @sum()

I know this sounds snippy... I actually REALLY appreciate your
response(s)... it definitely explained the behavior. Now I have to go back
to the high-maintenance and cranky engineer and tell him he needs to stop
using @sum. *sigh*

*Thanks* very much!!!

"Dave Peterson" wrote:

I don't know if it's a bug--or a feature. It's a fine line <vbg.

If you don't want to stop using that @ in your functions, how about hitting
ctrl-z (edit|Undo) right after it's turned into a hyperlink?



funnybroad wrote:

Correct me if I'm wrong, but isn't it still a bug, since =@whatever isn't a
valid internet email address anyway?

"Dave Peterson" wrote:

@ was used by Lotus 123 as the function indicator.

@ is also the character used in an email address.

If you're using Excel, stop using @sum().

If your formula starts with that function, then use an equal sign:
=sum(a1:a10)

If your formula contains that function, you don't need it:

=if(a17,sum(b1:b12),average(c1:c9))

========
If you really must continue the use of @ (fingers won't stop typing it????), you
can turn off the feature that turns those strings into hyperlinks:

Tools|Autocorrect options|Autoformat as you type tab
Uncheck that "replace as you type" option (Internet and network paths with
hyperlinks)

funnybroad wrote:

Using =@sum(a1:a3) or any formula will automatically generate an EMAIL
hyperlink.

We also use Infopath. When you are in a rich text format control, and you
type =@sum(a1:a3) and hit enter after the closing paragraph character, it
generates a mailto: hyperlink.

--

Dave Peterson


--

Dave Peterson



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 28
Default Office 2007 Bizarre =@sum() formula BUG - generates mailto: hy

"funnybroad" wrote in message
...
Correct me if I'm wrong, but isn't it still a bug, since =@whatever isn't
a
valid internet email address anyway?


What makes you think that =@whatever isn't a valid internet e-mail address?


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Migrating Office XP EXCEL files to Office 2007 SDR Setting up and Configuration of Excel 0 April 19th 07 02:38 AM
Office 2007 Pro Plus 2007 (Beta) - getting small red and green arr Bdhooper1 Excel Discussion (Misc queries) 1 July 19th 06 11:39 PM
Performance not upto Office 2003 standards in Office 2007 Mangal Singh Excel Discussion (Misc queries) 11 May 30th 06 12:57 AM
Batch create hyperl formula from hyperl value Electro911 Excel Discussion (Misc queries) 2 February 27th 06 06:29 PM
PPMT formula that generates equal payments ExcelMonkey Excel Worksheet Functions 3 February 15th 05 07:39 PM


All times are GMT +1. The time now is 10:56 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"