Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default Tables in Excel 2007 (SP-1) - Information Goes Blank

I have a set of data that I am trying to turn into a table.

In column D I have a date amounts entered.
In column G I have amouts entered.

The Column Headings in Columns H - O are year amounts, eg. 2007, 2008, etc.

The equations in the body of H - O are IF statements that say that if the
Year in Col D = the Year in the Column Heading, then put in the amount from
Col. G., if not put in "". ( I have also tried putting a 0 in for the false
answer and get the same result.)

When I am in the Excel 2007 Non Table mode everything works fine. When I
try to convert to the Table mode, the values derived from the IF equations
all vanish.

The cells in Cols H - O all are blank and the totals line that I had above
the Data area turns to 0.

The IF statements are still there but its as if they were gone since nothing
shows up and the total have all turned to 0.

Any thoughts?

Thanks
--
Alan
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 533
Default Tables in Excel 2007 (SP-1) - Information Goes Blank

It seems that when you made your table into an official "table" the column
headings were turned into text by Excel. So 2007 became "2007". So your
formulas are comparing 2007 to "2007" and returning no match. I wasn't able
to turn the heading years back to true numbers. Excel is keeping them as
text. So I tried turning the column D years into text by preceding them
with an apostrophe and that worked as did the formulas.

--
Jim
"AlanS" wrote in message
...
|I have a set of data that I am trying to turn into a table.
|
| In column D I have a date amounts entered.
| In column G I have amouts entered.
|
| The Column Headings in Columns H - O are year amounts, eg. 2007, 2008,
etc.
|
| The equations in the body of H - O are IF statements that say that if the
| Year in Col D = the Year in the Column Heading, then put in the amount
from
| Col. G., if not put in "". ( I have also tried putting a 0 in for the
false
| answer and get the same result.)
|
| When I am in the Excel 2007 Non Table mode everything works fine. When I
| try to convert to the Table mode, the values derived from the IF equations
| all vanish.
|
| The cells in Cols H - O all are blank and the totals line that I had above
| the Data area turns to 0.
|
| The IF statements are still there but its as if they were gone since
nothing
| shows up and the total have all turned to 0.
|
| Any thoughts?
|
| Thanks
| --
| Alan


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default Tables in Excel 2007 (SP-1) - Information Goes Blank

Makes sense. I didn't even think to check and see if the formatting had
changed. Somewhat disappointing that Excel doesn't keep the format the same.

Oh well. At least I understand what happened. Really aprreciate your help.
--
Alan


"Jim Rech" wrote:

It seems that when you made your table into an official "table" the column
headings were turned into text by Excel. So 2007 became "2007". So your
formulas are comparing 2007 to "2007" and returning no match. I wasn't able
to turn the heading years back to true numbers. Excel is keeping them as
text. So I tried turning the column D years into text by preceding them
with an apostrophe and that worked as did the formulas.

--
Jim
"AlanS" wrote in message
...
|I have a set of data that I am trying to turn into a table.
|
| In column D I have a date amounts entered.
| In column G I have amouts entered.
|
| The Column Headings in Columns H - O are year amounts, eg. 2007, 2008,
etc.
|
| The equations in the body of H - O are IF statements that say that if the
| Year in Col D = the Year in the Column Heading, then put in the amount
from
| Col. G., if not put in "". ( I have also tried putting a 0 in for the
false
| answer and get the same result.)
|
| When I am in the Excel 2007 Non Table mode everything works fine. When I
| try to convert to the Table mode, the values derived from the IF equations
| all vanish.
|
| The cells in Cols H - O all are blank and the totals line that I had above
| the Data area turns to 0.
|
| The IF statements are still there but its as if they were gone since
nothing
| shows up and the total have all turned to 0.
|
| Any thoughts?
|
| Thanks
| --
| Alan



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default Tables in Excel 2007 (SP-1) - Information Goes Blank

I figured out a way around the problem. In the IF statement when I refer to
the column heading, which is now a Year but in Text format, I changed the
equation to read the Value(of Col Heading).

For example =IF(YEAR($D8)=VALUE(J$6),$G8,"")
That cause the items to both be values.

Once again Jim, thanks for your help.
--
Alan


"Jim Rech" wrote:

It seems that when you made your table into an official "table" the column
headings were turned into text by Excel. So 2007 became "2007". So your
formulas are comparing 2007 to "2007" and returning no match. I wasn't able
to turn the heading years back to true numbers. Excel is keeping them as
text. So I tried turning the column D years into text by preceding them
with an apostrophe and that worked as did the formulas.

--
Jim
"AlanS" wrote in message
...
|I have a set of data that I am trying to turn into a table.
|
| In column D I have a date amounts entered.
| In column G I have amouts entered.
|
| The Column Headings in Columns H - O are year amounts, eg. 2007, 2008,
etc.
|
| The equations in the body of H - O are IF statements that say that if the
| Year in Col D = the Year in the Column Heading, then put in the amount
from
| Col. G., if not put in "". ( I have also tried putting a 0 in for the
false
| answer and get the same result.)
|
| When I am in the Excel 2007 Non Table mode everything works fine. When I
| try to convert to the Table mode, the values derived from the IF equations
| all vanish.
|
| The cells in Cols H - O all are blank and the totals line that I had above
| the Data area turns to 0.
|
| The IF statements are still there but its as if they were gone since
nothing
| shows up and the total have all turned to 0.
|
| Any thoughts?
|
| Thanks
| --
| Alan



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 533
Default Tables in Excel 2007 (SP-1) - Information Goes Blank

Better solution than mine!

--
Jim
"AlanS" wrote in message
...
I figured out a way around the problem. In the IF statement when I refer
to
the column heading, which is now a Year but in Text format, I changed the
equation to read the Value(of Col Heading).

For example =IF(YEAR($D8)=VALUE(J$6),$G8,"")
That cause the items to both be values.

Once again Jim, thanks for your help.
--
Alan


"Jim Rech" wrote:

It seems that when you made your table into an official "table" the
column
headings were turned into text by Excel. So 2007 became "2007". So your
formulas are comparing 2007 to "2007" and returning no match. I wasn't
able
to turn the heading years back to true numbers. Excel is keeping them as
text. So I tried turning the column D years into text by preceding them
with an apostrophe and that worked as did the formulas.

--
Jim
"AlanS" wrote in message
...
|I have a set of data that I am trying to turn into a table.
|
| In column D I have a date amounts entered.
| In column G I have amouts entered.
|
| The Column Headings in Columns H - O are year amounts, eg. 2007, 2008,
etc.
|
| The equations in the body of H - O are IF statements that say that if
the
| Year in Col D = the Year in the Column Heading, then put in the amount
from
| Col. G., if not put in "". ( I have also tried putting a 0 in for the
false
| answer and get the same result.)
|
| When I am in the Excel 2007 Non Table mode everything works fine. When
I
| try to convert to the Table mode, the values derived from the IF
equations
| all vanish.
|
| The cells in Cols H - O all are blank and the totals line that I had
above
| the Data area turns to 0.
|
| The IF statements are still there but its as if they were gone since
nothing
| shows up and the total have all turned to 0.
|
| Any thoughts?
|
| Thanks
| --
| Alan







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
Pivot Tables in Excel 2007 beata Excel Discussion (Misc queries) 8 March 6th 08 05:35 PM
Building pivot tables in Excel 2007 based on existing pivot tables? [email protected] Excel Discussion (Misc queries) 4 December 26th 07 08:05 PM
Document Information Panel In Excel 2007 MichaelJ Excel Discussion (Misc queries) 0 October 22nd 07 04:13 PM
Excel 2007 Tables Just Some Nobody Excel Discussion (Misc queries) 4 May 6th 07 10:20 AM
When i try to filter information, excel returns a blank page? AJoudrie Excel Worksheet Functions 2 April 5th 06 09:37 PM


All times are GMT +1. The time now is 04:01 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"