Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
RW RW is offline
external usenet poster
 
Posts: 49
Default Problem with formula in cell

I get the following message when I save a workbook:

A formula in a cell (Name:[Book1.xls]CO3POS!ResetSheet) could not be
converted because it contains a function that is not available in the file
format wo which you are saving.....

I have a macro in Module1 with the name ResetSheet but I do not have this
referenced in a cell on the CO3POS worksheet. How can I resolve this?


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Problem with formula in cell

Why not save in the normal file format for the version of excel you are
using.

Look in Tools=Options=Transition tab and the first entry is where you
select the default format for saving.

Choose "Microsoft Excel Workbook" from the dropdown would be my
recommendation.

--
Regards,
Tom Ogilvy

"RW" wrote in message
...
I get the following message when I save a workbook:

A formula in a cell (Name:[Book1.xls]CO3POS!ResetSheet) could not be
converted because it contains a function that is not available in the file
format wo which you are saving.....

I have a macro in Module1 with the name ResetSheet but I do not have this
referenced in a cell on the CO3POS worksheet. How can I resolve this?




  #3   Report Post  
Posted to microsoft.public.excel.programming
RW RW is offline
external usenet poster
 
Posts: 49
Default Problem with formula in cell

Microsoft Excel Workbook is already selected in the Transition tab.

I do not have a ResetSheet formula. It is a macro in module1. Why would
Excel think it's a formula in a cell?


"Tom Ogilvy" wrote:

Why not save in the normal file format for the version of excel you are
using.

Look in Tools=Options=Transition tab and the first entry is where you
select the default format for saving.

Choose "Microsoft Excel Workbook" from the dropdown would be my
recommendation.

--
Regards,
Tom Ogilvy

"RW" wrote in message
...
I get the following message when I save a workbook:

A formula in a cell (Name:[Book1.xls]CO3POS!ResetSheet) could not be
converted because it contains a function that is not available in the file
format wo which you are saving.....

I have a macro in Module1 with the name ResetSheet but I do not have this
referenced in a cell on the CO3POS worksheet. How can I resolve this?





  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Problem with formula in cell

If you take it out or comment it out (including the declaration), do you
still get the message?

--
Regards,
Tom Ogilvy

"RW" wrote in message
...
Microsoft Excel Workbook is already selected in the Transition tab.

I do not have a ResetSheet formula. It is a macro in module1. Why would
Excel think it's a formula in a cell?


"Tom Ogilvy" wrote:

Why not save in the normal file format for the version of excel you are
using.

Look in Tools=Options=Transition tab and the first entry is where you
select the default format for saving.

Choose "Microsoft Excel Workbook" from the dropdown would be my
recommendation.

--
Regards,
Tom Ogilvy

"RW" wrote in message
...
I get the following message when I save a workbook:

A formula in a cell (Name:[Book1.xls]CO3POS!ResetSheet) could not be
converted because it contains a function that is not available in the

file
format wo which you are saving.....

I have a macro in Module1 with the name ResetSheet but I do not have

this
referenced in a cell on the CO3POS worksheet. How can I resolve this?







  #5   Report Post  
Posted to microsoft.public.excel.programming
RW RW is offline
external usenet poster
 
Posts: 49
Default Problem with formula in cell

I commented it out and I still get the message.

I also tried changing the name of the macro to ResetSheet2 and I still got
the message with the original name (ResetSheet)

This is very frustrating.


"Tom Ogilvy" wrote:

If you take it out or comment it out (including the declaration), do you
still get the message?

--
Regards,
Tom Ogilvy

"RW" wrote in message
...
Microsoft Excel Workbook is already selected in the Transition tab.

I do not have a ResetSheet formula. It is a macro in module1. Why would
Excel think it's a formula in a cell?


"Tom Ogilvy" wrote:

Why not save in the normal file format for the version of excel you are
using.

Look in Tools=Options=Transition tab and the first entry is where you
select the default format for saving.

Choose "Microsoft Excel Workbook" from the dropdown would be my
recommendation.

--
Regards,
Tom Ogilvy

"RW" wrote in message
...
I get the following message when I save a workbook:

A formula in a cell (Name:[Book1.xls]CO3POS!ResetSheet) could not be
converted because it contains a function that is not available in the

file
format wo which you are saving.....

I have a macro in Module1 with the name ResetSheet but I do not have

this
referenced in a cell on the CO3POS worksheet. How can I resolve this?










  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Problem with formula in cell

Sure you don't have a hidden sheet named ResetSheet. Maybe an Excel4 macro
sheet?

Try running code like

Sub ShowAllSheetsandNames()
Dim sh as Object, nm as Object
for each sh in ActiveWorkbook.Sheets
sh.Visible = xlsheetvisible
Next
for each nm in Activeworkbook.Names
nm.visible = True
Next
End Sub

look at all the sheets and go into Insert=Name=Define and examine all the
names. See if they have a strange function in them.

--
Regards,
Tom Ogilvy




"RW" wrote in message
...
I commented it out and I still get the message.

I also tried changing the name of the macro to ResetSheet2 and I still got
the message with the original name (ResetSheet)

This is very frustrating.


"Tom Ogilvy" wrote:

If you take it out or comment it out (including the declaration), do you
still get the message?

--
Regards,
Tom Ogilvy

"RW" wrote in message
...
Microsoft Excel Workbook is already selected in the Transition tab.

I do not have a ResetSheet formula. It is a macro in module1. Why

would
Excel think it's a formula in a cell?


"Tom Ogilvy" wrote:

Why not save in the normal file format for the version of excel you

are
using.

Look in Tools=Options=Transition tab and the first entry is where

you
select the default format for saving.

Choose "Microsoft Excel Workbook" from the dropdown would be my
recommendation.

--
Regards,
Tom Ogilvy

"RW" wrote in message
...
I get the following message when I save a workbook:

A formula in a cell (Name:[Book1.xls]CO3POS!ResetSheet) could not

be
converted because it contains a function that is not available in

the
file
format wo which you are saving.....

I have a macro in Module1 with the name ResetSheet but I do not

have
this
referenced in a cell on the CO3POS worksheet. How can I resolve

this?










  #7   Report Post  
Posted to microsoft.public.excel.programming
RW RW is offline
external usenet poster
 
Posts: 49
Default Problem with formula in cell

Tom,

Thanks for providing the code to look for invisible sheets - none existed.

I also checked Insert=Name=Define on each sheet and did not see anything
named ResetSheet.


Is there anything else I can look for?

"Tom Ogilvy" wrote:

Sure you don't have a hidden sheet named ResetSheet. Maybe an Excel4 macro
sheet?

Try running code like

Sub ShowAllSheetsandNames()
Dim sh as Object, nm as Object
for each sh in ActiveWorkbook.Sheets
sh.Visible = xlsheetvisible
Next
for each nm in Activeworkbook.Names
nm.visible = True
Next
End Sub

look at all the sheets and go into Insert=Name=Define and examine all the
names. See if they have a strange function in them.

--
Regards,
Tom Ogilvy




"RW" wrote in message
...
I commented it out and I still get the message.

I also tried changing the name of the macro to ResetSheet2 and I still got
the message with the original name (ResetSheet)

This is very frustrating.


"Tom Ogilvy" wrote:

If you take it out or comment it out (including the declaration), do you
still get the message?

--
Regards,
Tom Ogilvy

"RW" wrote in message
...
Microsoft Excel Workbook is already selected in the Transition tab.

I do not have a ResetSheet formula. It is a macro in module1. Why

would
Excel think it's a formula in a cell?


"Tom Ogilvy" wrote:

Why not save in the normal file format for the version of excel you

are
using.

Look in Tools=Options=Transition tab and the first entry is where

you
select the default format for saving.

Choose "Microsoft Excel Workbook" from the dropdown would be my
recommendation.

--
Regards,
Tom Ogilvy

"RW" wrote in message
...
I get the following message when I save a workbook:

A formula in a cell (Name:[Book1.xls]CO3POS!ResetSheet) could not

be
converted because it contains a function that is not available in

the
file
format wo which you are saving.....

I have a macro in Module1 with the name ResetSheet but I do not

have
this
referenced in a cell on the CO3POS worksheet. How can I resolve

this?











  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Problem with formula in cell

Nothing comes to mind.

--
Regards,
Tom Ogilvy

"RW" wrote in message
...
Tom,

Thanks for providing the code to look for invisible sheets - none existed.

I also checked Insert=Name=Define on each sheet and did not see anything
named ResetSheet.


Is there anything else I can look for?

"Tom Ogilvy" wrote:

Sure you don't have a hidden sheet named ResetSheet. Maybe an Excel4

macro
sheet?

Try running code like

Sub ShowAllSheetsandNames()
Dim sh as Object, nm as Object
for each sh in ActiveWorkbook.Sheets
sh.Visible = xlsheetvisible
Next
for each nm in Activeworkbook.Names
nm.visible = True
Next
End Sub

look at all the sheets and go into Insert=Name=Define and examine all

the
names. See if they have a strange function in them.

--
Regards,
Tom Ogilvy




"RW" wrote in message
...
I commented it out and I still get the message.

I also tried changing the name of the macro to ResetSheet2 and I still

got
the message with the original name (ResetSheet)

This is very frustrating.


"Tom Ogilvy" wrote:

If you take it out or comment it out (including the declaration), do

you
still get the message?

--
Regards,
Tom Ogilvy

"RW" wrote in message
...
Microsoft Excel Workbook is already selected in the Transition

tab.

I do not have a ResetSheet formula. It is a macro in module1. Why

would
Excel think it's a formula in a cell?


"Tom Ogilvy" wrote:

Why not save in the normal file format for the version of excel

you
are
using.

Look in Tools=Options=Transition tab and the first entry is

where
you
select the default format for saving.

Choose "Microsoft Excel Workbook" from the dropdown would be my
recommendation.

--
Regards,
Tom Ogilvy

"RW" wrote in message
...
I get the following message when I save a workbook:

A formula in a cell (Name:[Book1.xls]CO3POS!ResetSheet) could

not
be
converted because it contains a function that is not available

in
the
file
format wo which you are saving.....

I have a macro in Module1 with the name ResetSheet but I do

not
have
this
referenced in a cell on the CO3POS worksheet. How can I

resolve
this?













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
Cell reference formula problem Rocketeer Excel Discussion (Misc queries) 5 March 29th 10 01:55 AM
Problem with formula showing in cell andyK Excel Worksheet Functions 2 August 8th 08 12:48 AM
Problem After Inserting Cell Formula Rick Excel Discussion (Misc queries) 1 December 28th 07 07:12 PM
Copy an Drag cell Formula Problem Nat Excel Discussion (Misc queries) 1 June 20th 05 03:24 PM
Excel VBA-use variable in active cell formula problem waveracerr Excel Programming 9 February 6th 04 02:49 PM


All times are GMT +1. The time now is 04:57 PM.

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"