Welcome to the { mindfrost82.com } forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Excel

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-20-2008, 01:54 AM
BigLar86@gmail.com
 
Posts: n/a
Fiscal Year function

Hi new to the forum - hope this is correct format

Half my work deals with the calendar year 1/1-12/21
and half deals with FY 10/1 - 9/30

I am trying to build a function that i could apply to a worksheet that
would search out all cells formated as date and change date to FY date
set.

I am new to VBA but not to excel - this is what i use currently

=IF(MONTH(cell)<=9,YEAR(cell),YEAR(cell)+1

any ideas?

BigLar
Reply With Quote
  #2 (permalink)  
Old 05-20-2008, 08:22 AM
Bob Phillips
 
Posts: n/a
Re: Fiscal Year function

Where is the resultant value supposed to go, in a cell to the right, below?

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



<BigLar86@gmail.com> wrote in message
news:569fbc7e-9a11-4d29-b6a9-feeb6a304777@w34g2000prm.googlegroups.com...
> Hi new to the forum - hope this is correct format
>
> Half my work deals with the calendar year 1/1-12/21
> and half deals with FY 10/1 - 9/30
>
> I am trying to build a function that i could apply to a worksheet that
> would search out all cells formated as date and change date to FY date
> set.
>
> I am new to VBA but not to excel - this is what i use currently
>
> =IF(MONTH(cell)<=9,YEAR(cell),YEAR(cell)+1
>
> any ideas?
>
> BigLar



Reply With Quote
  #3 (permalink)  
Old 05-20-2008, 01:58 PM
BigLar86@gmail.com
 
Posts: n/a
Re: Fiscal Year function

On May 20, 1:22*am, "Bob Phillips" <bob....@somewhere.com> wrote:
> Where is the resultant value supposed to go, in a cell to the right, below?
>
> --
> ---
> HTH
>
> Bob
>
> (there's no email, no snail mail, but somewhere should be gmail in my addy)
>
> <BigLa...@gmail.com> wrote in message
>
> news:569fbc7e-9a11-4d29-b6a9-feeb6a304777@w34g2000prm.googlegroups.com...
>
>
>
> > Hi new to the forum - hope this is correct format

>
> > Half my work deals with the calendar year 1/1-12/21
> > and half deals with FY 10/1 - 9/30

>
> > I am trying to build a function that i could apply to a worksheet that
> > would search out all cells formated as date and change date to FY date
> > set.

>
> > I am new to VBA but not to excel - this is what i use currently

>
> > =IF(MONTH(cell)<=9,YEAR(cell),YEAR(cell)+1

>
> > any ideas?

>
> > BigLar- Hide quoted text -

>
> - Show quoted text -


Currently cell to right - best of all worlds would like to insert cell
to right, run, delete first cell so my sheet structure was not
altered.
Lar
Reply With Quote
  #4 (permalink)  
Old 05-20-2008, 02:45 PM
Bob Phillips
 
Posts: n/a
Re: Fiscal Year function

Public Sub ProcessData()
Dim cell As Range

For Each cell In ActiveSheet.UsedRange.Cells

If Month(cell.Value) <= 9 Then

cell.Value = DateSerial(Year(cell.Value) + 1, Month(cell.Value),
Day(cell.Value))
End If
Next cell
End Sub


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

<BigLar86@gmail.com> wrote in message
news:26eb8b90-c1e3-4cca-804e-665fded030d1@a9g2000prl.googlegroups.com...
On May 20, 1:22 am, "Bob Phillips" <bob....@somewhere.com> wrote:
> Where is the resultant value supposed to go, in a cell to the right,
> below?
>
> --
> ---
> HTH
>
> Bob
>
> (there's no email, no snail mail, but somewhere should be gmail in my
> addy)
>
> <BigLa...@gmail.com> wrote in message
>
> news:569fbc7e-9a11-4d29-b6a9-feeb6a304777@w34g2000prm.googlegroups.com...
>
>
>
> > Hi new to the forum - hope this is correct format

>
> > Half my work deals with the calendar year 1/1-12/21
> > and half deals with FY 10/1 - 9/30

>
> > I am trying to build a function that i could apply to a worksheet that
> > would search out all cells formated as date and change date to FY date
> > set.

>
> > I am new to VBA but not to excel - this is what i use currently

>
> > =IF(MONTH(cell)<=9,YEAR(cell),YEAR(cell)+1

>
> > any ideas?

>
> > BigLar- Hide quoted text -

>
> - Show quoted text -


Currently cell to right - best of all worlds would like to insert cell
to right, run, delete first cell so my sheet structure was not
altered.
Lar


Reply With Quote
  #5 (permalink)  
Old 05-21-2008, 01:26 PM
BigLar86@gmail.com
 
Posts: n/a
Re: Fiscal Year function

On May 20, 7:45*am, "Bob Phillips" <bob....@somewhere.com> wrote:
> Public Sub ProcessData()
> Dim cell As Range
>
> * * For Each cell In ActiveSheet.UsedRange.Cells
>
> * * * * If Month(cell.Value) <= 9 Then
>
> * * * * * * cell.Value = DateSerial(Year(cell.Value) + 1, Month(cell.Value),
> Day(cell.Value))
> * * * * End If
> * * Next cell
> End Sub
>
> --
> HTH
>
> Bob
>
> (there's no email, no snail mail, but somewhere should be gmail in my addy)
>
> <BigLa...@gmail.com> wrote in message
>
> news:26eb8b90-c1e3-4cca-804e-665fded030d1@a9g2000prl.googlegroups.com...
> On May 20, 1:22 am, "Bob Phillips" <bob....@somewhere.com> wrote:
>
>
>
>
>
> > Where is the resultant value supposed to go, in a cell to the right,
> > below?

>
> > --
> > ---
> > HTH

>
> > Bob

>
> > (there's no email, no snail mail, but somewhere should be gmail in my
> > addy)

>
> > <BigLa...@gmail.com> wrote in message

>
> >news:569fbc7e-9a11-4d29-b6a9-feeb6a304777@w34g2000prm.googlegroups.com...

>
> > > Hi new to the forum - hope this is correct format

>
> > > Half my work deals with the calendar year 1/1-12/21
> > > and half deals with FY 10/1 - 9/30

>
> > > I am trying to build a function that i could apply to a worksheet that
> > > would search out all cells formated as date and change date to FY date
> > > set.

>
> > > I am new to VBA but not to excel - this is what i use currently

>
> > > =IF(MONTH(cell)<=9,YEAR(cell),YEAR(cell)+1

>
> > > any ideas?

>
> > > BigLar- Hide quoted text -

>
> > - Show quoted text -

>
> Currently cell to right - best of all worlds would like to insert cell
> to right, run, delete first cell so my sheet structure was not
> altered.
> Lar- Hide quoted text -
>
> - Show quoted text -


Thank you! I am getting an 'expected arguement' error - but i am not
asking for clarification. I appreciate that you given me and want to
try and take it apart to learn from.

Thanks :)
Reply With Quote
  #6 (permalink)  
Old 05-21-2008, 02:08 PM
Bob Phillips
 
Posts: n/a
Re: Fiscal Year function

It is probably that the DateSerial line has got wrapped into two lines in
the post.

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



<BigLar86@gmail.com> wrote in message
news:c5b59d26-53fa-422a-a193-2b58128f3985@i76g2000hsf.googlegroups.com...
On May 20, 7:45 am, "Bob Phillips" <bob....@somewhere.com> wrote:
> Public Sub ProcessData()
> Dim cell As Range
>
> For Each cell In ActiveSheet.UsedRange.Cells
>
> If Month(cell.Value) <= 9 Then
>
> cell.Value = DateSerial(Year(cell.Value) + 1, Month(cell.Value),
> Day(cell.Value))
> End If
> Next cell
> End Sub
>
> --
> HTH
>
> Bob
>
> (there's no email, no snail mail, but somewhere should be gmail in my
> addy)
>
> <BigLa...@gmail.com> wrote in message
>
> news:26eb8b90-c1e3-4cca-804e-665fded030d1@a9g2000prl.googlegroups.com...
> On May 20, 1:22 am, "Bob Phillips" <bob....@somewhere.com> wrote:
>
>
>
>
>
> > Where is the resultant value supposed to go, in a cell to the right,
> > below?

>
> > --
> > ---
> > HTH

>
> > Bob

>
> > (there's no email, no snail mail, but somewhere should be gmail in my
> > addy)

>
> > <BigLa...@gmail.com> wrote in message

>
> >news:569fbc7e-9a11-4d29-b6a9-feeb6a304777@w34g2000prm.googlegroups.com...

>
> > > Hi new to the forum - hope this is correct format

>
> > > Half my work deals with the calendar year 1/1-12/21
> > > and half deals with FY 10/1 - 9/30

>
> > > I am trying to build a function that i could apply to a worksheet that
> > > would search out all cells formated as date and change date to FY date
> > > set.

>
> > > I am new to VBA but not to excel - this is what i use currently

>
> > > =IF(MONTH(cell)<=9,YEAR(cell),YEAR(cell)+1

>
> > > any ideas?

>
> > > BigLar- Hide quoted text -

>
> > - Show quoted text -

>
> Currently cell to right - best of all worlds would like to insert cell
> to right, run, delete first cell so my sheet structure was not
> altered.
> Lar- Hide quoted text -
>
> - Show quoted text -


Thank you! I am getting an 'expected arguement' error - but i am not
asking for clarification. I appreciate that you given me and want to
try and take it apart to learn from.

Thanks :)


Reply With Quote
  #7 (permalink)  
Old 05-22-2008, 01:30 AM
BigLar86@gmail.com
 
Posts: n/a
Re: Fiscal Year function

it was the DateSerial line - took me about 45 to figure it out but i
got it.
thank you thank you.
I am working on error handling, for fields with text and blank fields
- if you would be so kind as to point me in the right direction I
would like to give it a try.


On May 21, 7:08*am, "Bob Phillips" <bob....@somewhere.com> wrote:
> It is probably that the DateSerial line has got wrapped into two lines in
> the post.
>
> --
> ---
> HTH
>
> Bob
>
> (there's no email, no snail mail, but somewhere should be gmail in my addy)
>
> <BigLa...@gmail.com> wrote in message
>
> news:c5b59d26-53fa-422a-a193-2b58128f3985@i76g2000hsf.googlegroups.com...
> On May 20, 7:45 am, "Bob Phillips" <bob....@somewhere.com> wrote:
>
>
>
>
>
> > Public Sub ProcessData()
> > Dim cell As Range

>
> > For Each cell In ActiveSheet.UsedRange.Cells

>
> > If Month(cell.Value) <= 9 Then

>
> > cell.Value = DateSerial(Year(cell.Value) + 1, Month(cell.Value),
> > Day(cell.Value))
> > End If
> > Next cell
> > End Sub

>
> > --
> > HTH

>
> > Bob

>
> > (there's no email, no snail mail, but somewhere should be gmail in my
> > addy)

>
> > <BigLa...@gmail.com> wrote in message

>
> >news:26eb8b90-c1e3-4cca-804e-665fded030d1@a9g2000prl.googlegroups.com...
> > On May 20, 1:22 am, "Bob Phillips" <bob....@somewhere.com> wrote:

>
> > > Where is the resultant value supposed to go, in a cell to the right,
> > > below?

>
> > > --
> > > ---
> > > HTH

>
> > > Bob

>
> > > (there's no email, no snail mail, but somewhere should be gmail in my
> > > addy)

>
> > > <BigLa...@gmail.com> wrote in message

>
> > >news:569fbc7e-9a11-4d29-b6a9-feeb6a304777@w34g2000prm.googlegroups.com....

>
> > > > Hi new to the forum - hope this is correct format

>
> > > > Half my work deals with the calendar year 1/1-12/21
> > > > and half deals with FY 10/1 - 9/30

>
> > > > I am trying to build a function that i could apply to a worksheet that
> > > > would search out all cells formated as date and change date to FY date
> > > > set.

>
> > > > I am new to VBA but not to excel - this is what i use currently

>
> > > > =IF(MONTH(cell)<=9,YEAR(cell),YEAR(cell)+1

>
> > > > any ideas?

>
> > > > BigLar- Hide quoted text -

>
> > > - Show quoted text -

>
> > Currently cell to right - best of all worlds would like to insert cell
> > to right, run, delete first cell so my sheet structure was not
> > altered.
> > Lar- Hide quoted text -

>
> > - Show quoted text -

>
> Thank you! *I am getting an 'expected arguement' error - but i am not
> asking for clarification. *I appreciate that you given me and want to
> try and take it apart to learn from.
>
> Thanks :)- Hide quoted text -
>
> - Show quoted text -


Thanks again, it was the ser
Reply With Quote
  #8 (permalink)  
Old 05-22-2008, 09:46 AM
Bob Phillips
 
Posts: n/a
Re: Fiscal Year function

I will try, but I need a bit more detail as to what you are alluding to.

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



<BigLar86@gmail.com> wrote in message
news:46970ddc-19ac-441a-b4dd-5f2ce19d646f@26g2000hsk.googlegroups.com...
it was the DateSerial line - took me about 45 to figure it out but i
got it.
thank you thank you.
I am working on error handling, for fields with text and blank fields
- if you would be so kind as to point me in the right direction I
would like to give it a try.


On May 21, 7:08 am, "Bob Phillips" <bob....@somewhere.com> wrote:
> It is probably that the DateSerial line has got wrapped into two lines in
> the post.
>
> --
> ---
> HTH
>
> Bob
>
> (there's no email, no snail mail, but somewhere should be gmail in my
> addy)
>
> <BigLa...@gmail.com> wrote in message
>
> news:c5b59d26-53fa-422a-a193-2b58128f3985@i76g2000hsf.googlegroups.com...
> On May 20, 7:45 am, "Bob Phillips" <bob....@somewhere.com> wrote:
>
>
>
>
>
> > Public Sub ProcessData()
> > Dim cell As Range

>
> > For Each cell In ActiveSheet.UsedRange.Cells

>
> > If Month(cell.Value) <= 9 Then

>
> > cell.Value = DateSerial(Year(cell.Value) + 1, Month(cell.Value),
> > Day(cell.Value))
> > End If
> > Next cell
> > End Sub

>
> > --
> > HTH

>
> > Bob

>
> > (there's no email, no snail mail, but somewhere should be gmail in my
> > addy)

>
> > <BigLa...@gmail.com> wrote in message

>
> >news:26eb8b90-c1e3-4cca-804e-665fded030d1@a9g2000prl.googlegroups.com...
> > On May 20, 1:22 am, "Bob Phillips" <bob....@somewhere.com> wrote:

>
> > > Where is the resultant value supposed to go, in a cell to the right,
> > > below?

>
> > > --
> > > ---
> > > HTH

>
> > > Bob

>
> > > (there's no email, no snail mail, but somewhere should be gmail in my
> > > addy)

>
> > > <BigLa...@gmail.com> wrote in message

>
> > >news:569fbc7e-9a11-4d29-b6a9-feeb6a304777@w34g2000prm.googlegroups.com...

>
> > > > Hi new to the forum - hope this is correct format

>
> > > > Half my work deals with the calendar year 1/1-12/21
> > > > and half deals with FY 10/1 - 9/30

>
> > > > I am trying to build a function that i could apply to a worksheet
> > > > that
> > > > would search out all cells formated as date and change date to FY
> > > > date
> > > > set.

>
> > > > I am new to VBA but not to excel - this is what i use currently

>
> > > > =IF(MONTH(cell)<=9,YEAR(cell),YEAR(cell)+1

>
> > > > any ideas?

>
> > > > BigLar- Hide quoted text -

>
> > > - Show quoted text -

>
> > Currently cell to right - best of all worlds would like to insert cell
> > to right, run, delete first cell so my sheet structure was not
> > altered.
> > Lar- Hide quoted text -

>
> > - Show quoted text -

>
> Thank you! I am getting an 'expected arguement' error - but i am not
> asking for clarification. I appreciate that you given me and want to
> try and take it apart to learn from.
>
> Thanks :)- Hide quoted text -
>
> - Show quoted text -


Thanks again, it was the ser


Reply With Quote
  #9 (permalink)  
Old 05-22-2008, 01:27 PM
BigLar86@gmail.com
 
Posts: n/a
Re: Fiscal Year function

On May 22, 2:46*am, "Bob Phillips" <bob....@somewhere.com> wrote:
> I will try, but I need a bit more detail as to what you are alluding to.
>
> --
> ---
> HTH
>
> Bob
>
> (there's no email, no snail mail, but somewhere should be gmail in my addy)
>
> <BigLa...@gmail.com> wrote in message
>
> news:46970ddc-19ac-441a-b4dd-5f2ce19d646f@26g2000hsk.googlegroups.com...
> it was the DateSerial line - took me about 45 to figure it out but i
> got it.
> thank you thank you.
> I am working on error handling, for fields with text and blank fields
> - if you would be so kind as to point me in the right direction I
> would like to give it a try.
>
> On May 21, 7:08 am, "Bob Phillips" <bob....@somewhere.com> wrote:
>
>
>
>
>
> > It is probably that the DateSerial line has got wrapped into two lines in
> > the post.

>
> > --
> > ---
> > HTH

>
> > Bob

>
> > (there's no email, no snail mail, but somewhere should be gmail in my
> > addy)

>
> > <BigLa...@gmail.com> wrote in message

>
> >news:c5b59d26-53fa-422a-a193-2b58128f3985@i76g2000hsf.googlegroups.com...
> > On May 20, 7:45 am, "Bob Phillips" <bob....@somewhere.com> wrote:

>
> > > Public Sub ProcessData()
> > > Dim cell As Range

>
> > > For Each cell In ActiveSheet.UsedRange.Cells

>
> > > If Month(cell.Value) <= 9 Then

>
> > > cell.Value = DateSerial(Year(cell.Value) + 1, Month(cell.Value),
> > > Day(cell.Value))
> > > End If
> > > Next cell
> > > End Sub

>
> > > --
> > > HTH

>
> > > Bob

>
> > > (there's no email, no snail mail, but somewhere should be gmail in my
> > > addy)

>
> > > <BigLa...@gmail.com> wrote in message

>
> > >news:26eb8b90-c1e3-4cca-804e-665fded030d1@a9g2000prl.googlegroups.com....
> > > On May 20, 1:22 am, "Bob Phillips" <bob....@somewhere.com> wrote:

>
> > > > Where is the resultant value supposed to go, in a cell to the right,
> > > > below?

>
> > > > --
> > > > ---
> > > > HTH

>
> > > > Bob

>
> > > > (there's no email, no snail mail, but somewhere should be gmail in my
> > > > addy)

>
> > > > <BigLa...@gmail.com> wrote in message

>
> > > >news:569fbc7e-9a11-4d29-b6a9-feeb6a304777@w34g2000prm.googlegroups.com...

>
> > > > > Hi new to the forum - hope this is correct format

>
> > > > > Half my work deals with the calendar year 1/1-12/21
> > > > > and half deals with FY 10/1 - 9/30

>
> > > > > I am trying to build a function that i could apply to a worksheet
> > > > > that
> > > > > would search out all cells formated as date and change date to FY
> > > > > date
> > > > > set.

>
> > > > > I am new to VBA but not to excel - this is what i use currently

>
> > > > > =IF(MONTH(cell)<=9,YEAR(cell),YEAR(cell)+1

>
> > > > > any ideas?

>
> > > > > BigLar- Hide quoted text -

>
> > > > - Show quoted text -

>
> > > Currently cell to right - best of all worlds would like to insert cell
> > > to right, run, delete first cell so my sheet structure was not
> > > altered.
> > > Lar- Hide quoted text -

>
> > > - Show quoted text -

>
> > Thank you! I am getting an 'expected arguement' error - but i am not
> > asking for clarification. I appreciate that you given me and want to
> > try and take it apart to learn from.

>
> > Thanks :)- Hide quoted text -

>
> > - Show quoted text -

>
> Thanks again, it was the ser- Hide quoted text -
>
> - Show quoted text -


Sorry about that - it works great for all cells with date - but i have
a blank cell it formats as date and puts the 1900 date in there. Also
if a cell has text it throws an error of data type mismatch. Any help
would be appreciated.
lar.
Reply With Quote
  #10 (permalink)  
Old 05-24-2008, 12:46 AM
Bob Phillips
 
Posts: n/a
Re: Fiscal Year function

Public Sub ProcessData()
Dim cell As Range

For Each cell In ActiveSheet.UsedRange.Cells

If cell.Value <> "" Then

If Month(cell.Value) <= 9 Then

cell.Value = DateSerial(Year(cell.Value) + 1, _
Month(cell.Value), _
Day(cell.Value))
End If
End If
Next cell
End Sub




--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



<BigLar86@gmail.com> wrote in message
news:6bdb1065-0d7f-4ea6-b8c5-a644e4b1407c@z72g2000hsb.googlegroups.com...
On May 22, 2:46 am, "Bob Phillips" <bob....@somewhere.com> wrote:
> I will try, but I need a bit more detail as to what you are alluding to.
>
> --
> ---
> HTH
>
> Bob
>
> (there's no email, no snail mail, but somewhere should be gmail in my
> addy)
>
> <BigLa...@gmail.com> wrote in message
>
> news:46970ddc-19ac-441a-b4dd-5f2ce19d646f@26g2000hsk.googlegroups.com...
> it was the DateSerial line - took me about 45 to figure it out but i
> got it.
> thank you thank you.
> I am working on error handling, for fields with text and blank fields
> - if you would be so kind as to point me in the right direction I
> would like to give it a try.
>
> On May 21, 7:08 am, "Bob Phillips" <bob....@somewhere.com> wrote:
>
>
>
>
>
> > It is probably that the DateSerial line has got wrapped into two lines
> > in
> > the post.

>
> > --
> > ---
> > HTH

>
> > Bob

>
> > (there's no email, no snail mail, but somewhere should be gmail in my
> > addy)

>
> > <BigLa...@gmail.com> wrote in message

>
> >news:c5b59d26-53fa-422a-a193-2b58128f3985@i76g2000hsf.googlegroups.com...
> > On May 20, 7:45 am, "Bob Phillips" <bob....@somewhere.com> wrote:

>
> > > Public Sub ProcessData()
> > > Dim cell As Range

>
> > > For Each cell In ActiveSheet.UsedRange.Cells

>
> > > If Month(cell.Value) <= 9 Then

>
> > > cell.Value = DateSerial(Year(cell.Value) + 1, Month(cell.Value),
> > > Day(cell.Value))
> > > End If
> > > Next cell
> > > End Sub

>
> > > --
> > > HTH

>
> > > Bob

>
> > > (there's no email, no snail mail, but somewhere should be gmail in my
> > > addy)

>
> > > <BigLa...@gmail.com> wrote in message

>
> > >news:26eb8b90-c1e3-4cca-804e-665fded030d1@a9g2000prl.googlegroups.com...
> > > On May 20, 1:22 am, "Bob Phillips" <bob....@somewhere.com> wrote:

>
> > > > Where is the resultant value supposed to go, in a cell to the right,
> > > > below?

>
> > > > --
> > > > ---
> > > > HTH

>
> > > > Bob

>
> > > > (there's no email, no snail mail, but somewhere should be gmail in
> > > > my
> > > > addy)

>
> > > > <BigLa...@gmail.com> wrote in message

>
> > > >news:569fbc7e-9a11-4d29-b6a9-feeb6a304777@w34g2000prm.googlegroups.com...

>
> > > > > Hi new to the forum - hope this is correct format

>
> > > > > Half my work deals with the calendar year 1/1-12/21
> > > > > and half deals with FY 10/1 - 9/30

>
> > > > > I am trying to build a function that i could apply to a worksheet
> > > > > that
> > > > > would search out all cells formated as date and change date to FY
> > > > > date
> > > > > set.

>
> > > > > I am new to VBA but not to excel - this is what i use currently

>
> > > > > =IF(MONTH(cell)<=9,YEAR(cell),YEAR(cell)+1

>
> > > > > any ideas?

>
> > > > > BigLar- Hide quoted text -

>
> > > > - Show quoted text -

>
> > > Currently cell to right - best of all worlds would like to insert cell
> > > to right, run, delete first cell so my sheet structure was not
> > > altered.
> > > Lar- Hide quoted text -

>
> > > - Show quoted text -

>
> > Thank you! I am getting an 'expected arguement' error - but i am not
> > asking for clarification. I appreciate that you given me and want to
> > try and take it apart to learn from.

>
> > Thanks :)- Hide quoted text -

>
> > - Show quoted text -

>
> Thanks again, it was the ser- Hide quoted text -
>
> - Show quoted text -


Sorry about that - it works great for all cells with date - but i have
a blank cell it formats as date and puts the 1900 date in there. Also
if a cell has text it throws an error of data type mismatch. Any help
would be appreciated.
lar.



Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Excel


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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



All times are GMT. The time now is 04:56 PM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0


Sponsors:
Electricity Suppliers | Loans | Problem Mortgage | Mobile Phone | Vacation Spots



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114