Cumulative Summing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am successfully doing cumulative summing for columns Jan-05 thru Dec-05
based on cell I1 which puts today's date into text by =TEXT(TODAY(),"mmm-yy").

I then use the formula =SUM($O3:INDEX($O3:$Z3,MATCH($I$1,$O$2:$Z$2,0)))
which compares today's date in text vs what I have manually inputted for
month headings in text.

Everything works fine as long as everyone uses an English copy of Excel.
This is not the case in our France location however so when they open up the
spreadsheet, today's date in text is showing as Févr-05 which of course does
not match the English headings of Feb-05. I could of course input the month
headings in text in French so it would match, but then it would not work when
someone with an English copy opens up the spreadsheet.

So I either need a solution to this translation issue, or a new way to do
cumulative summing where I don't need to change dates into text. Any help
would be immensely appreciated.
 
Hi,

How about adjusting the column headings to be, for instance for Jan 04
=TEXT(DATE(2004,01,01),"mmm-yy")?

Cheers,
Jon
 
Use formulas for your headers as well

=TEXT(DATE(2005,2,1),"mmm-yy")

(for February as an example)

then your headers will be translated as well
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top