+ Reply to Thread
Results 1 to 7 of 7

how do I write a formula to pick a date or N/A?

Hybrid View

  1. #1
    Scott
    Guest

    how do I write a formula to pick a date or N/A?

    I am using a spreadsheet to show when required tasks are due for specific
    classes. My problem is this: when a class does not go through a specific
    portion, I put N/A in the date block for that portion, and would like it to
    put N/A in the specific date blocks for the specific tasks, not the date the
    task is due. So what I am getting is "#value!".

    Thanks
    Scott

  2. #2
    CLR
    Guest

    RE: how do I write a formula to pick a date or N/A?

    Please post your formula that is causing the "#Value!" error and someone will
    help....

    Vaya con Dios,
    Chuck, CABGx3



    "Scott" wrote:

    > I am using a spreadsheet to show when required tasks are due for specific
    > classes. My problem is this: when a class does not go through a specific
    > portion, I put N/A in the date block for that portion, and would like it to
    > put N/A in the specific date blocks for the specific tasks, not the date the
    > task is due. So what I am getting is "#value!".
    >
    > Thanks
    > Scott


  3. #3
    David Billigmeier
    Guest

    RE: how do I write a formula to pick a date or N/A?

    =IF(A1="N/A","N/A",your_formula)

    --
    Regards,
    Dave


    "Scott" wrote:

    > I am using a spreadsheet to show when required tasks are due for specific
    > classes. My problem is this: when a class does not go through a specific
    > portion, I put N/A in the date block for that portion, and would like it to
    > put N/A in the specific date blocks for the specific tasks, not the date the
    > task is due. So what I am getting is "#value!".
    >
    > Thanks
    > Scott


  4. #4
    Scott
    Guest

    RE: how do I write a formula to pick a date or N/A?

    Thanks David,
    Sorry but I am still a little lost, in my spreadsheet I have a list of
    tasks that need to be done at specific times (i.e. 45 days from start of
    class, 15 days after completion of this class...) at the top of the
    spreadsheet I have the dates of when certain portions begin to figure out the
    task dates (=k6-45...) but sometimes I need to put N/A (Not Applicable) in
    those date blocks if that class is not being taught. So if I do that, what I
    would like it to do is to also put N/A in the specific tasks assigned to that
    class. Does that make sense?

    Scott

    "David Billigmeier" wrote:

    > =IF(A1="N/A","N/A",your_formula)
    >
    > --
    > Regards,
    > Dave
    >
    >
    > "Scott" wrote:
    >
    > > I am using a spreadsheet to show when required tasks are due for specific
    > > classes. My problem is this: when a class does not go through a specific
    > > portion, I put N/A in the date block for that portion, and would like it to
    > > put N/A in the specific date blocks for the specific tasks, not the date the
    > > task is due. So what I am getting is "#value!".
    > >
    > > Thanks
    > > Scott


  5. #5
    CLR
    Guest

    RE: how do I write a formula to pick a date or N/A?

    Instead of just =K6-45, use this......

    =IF(K6="N/A","N/A",K6-45)

    Vaya con Dios,
    Chuck, CABGx3


    "Scott" wrote:

    > Thanks David,
    > Sorry but I am still a little lost, in my spreadsheet I have a list of
    > tasks that need to be done at specific times (i.e. 45 days from start of
    > class, 15 days after completion of this class...) at the top of the
    > spreadsheet I have the dates of when certain portions begin to figure out the
    > task dates (=k6-45...) but sometimes I need to put N/A (Not Applicable) in
    > those date blocks if that class is not being taught. So if I do that, what I
    > would like it to do is to also put N/A in the specific tasks assigned to that
    > class. Does that make sense?
    >
    > Scott
    >
    > "David Billigmeier" wrote:
    >
    > > =IF(A1="N/A","N/A",your_formula)
    > >
    > > --
    > > Regards,
    > > Dave
    > >
    > >
    > > "Scott" wrote:
    > >
    > > > I am using a spreadsheet to show when required tasks are due for specific
    > > > classes. My problem is this: when a class does not go through a specific
    > > > portion, I put N/A in the date block for that portion, and would like it to
    > > > put N/A in the specific date blocks for the specific tasks, not the date the
    > > > task is due. So what I am getting is "#value!".
    > > >
    > > > Thanks
    > > > Scott


  6. #6
    Scott
    Guest

    RE: how do I write a formula to pick a date or N/A?

    Worked great, thank you!

    "CLR" wrote:

    > Instead of just =K6-45, use this......
    >
    > =IF(K6="N/A","N/A",K6-45)
    >
    > Vaya con Dios,
    > Chuck, CABGx3
    >
    >
    > "Scott" wrote:
    >
    > > Thanks David,
    > > Sorry but I am still a little lost, in my spreadsheet I have a list of
    > > tasks that need to be done at specific times (i.e. 45 days from start of
    > > class, 15 days after completion of this class...) at the top of the
    > > spreadsheet I have the dates of when certain portions begin to figure out the
    > > task dates (=k6-45...) but sometimes I need to put N/A (Not Applicable) in
    > > those date blocks if that class is not being taught. So if I do that, what I
    > > would like it to do is to also put N/A in the specific tasks assigned to that
    > > class. Does that make sense?
    > >
    > > Scott
    > >
    > > "David Billigmeier" wrote:
    > >
    > > > =IF(A1="N/A","N/A",your_formula)
    > > >
    > > > --
    > > > Regards,
    > > > Dave
    > > >
    > > >
    > > > "Scott" wrote:
    > > >
    > > > > I am using a spreadsheet to show when required tasks are due for specific
    > > > > classes. My problem is this: when a class does not go through a specific
    > > > > portion, I put N/A in the date block for that portion, and would like it to
    > > > > put N/A in the specific date blocks for the specific tasks, not the date the
    > > > > task is due. So what I am getting is "#value!".
    > > > >
    > > > > Thanks
    > > > > Scott


  7. #7
    Scott
    Guest

    RE: how do I write a formula to pick a date or N/A?

    Worked great, thank you!

    "CLR" wrote:

    > Instead of just =K6-45, use this......
    >
    > =IF(K6="N/A","N/A",K6-45)
    >
    > Vaya con Dios,
    > Chuck, CABGx3
    >
    >
    > "Scott" wrote:
    >
    > > Thanks David,
    > > Sorry but I am still a little lost, in my spreadsheet I have a list of
    > > tasks that need to be done at specific times (i.e. 45 days from start of
    > > class, 15 days after completion of this class...) at the top of the
    > > spreadsheet I have the dates of when certain portions begin to figure out the
    > > task dates (=k6-45...) but sometimes I need to put N/A (Not Applicable) in
    > > those date blocks if that class is not being taught. So if I do that, what I
    > > would like it to do is to also put N/A in the specific tasks assigned to that
    > > class. Does that make sense?
    > >
    > > Scott
    > >
    > > "David Billigmeier" wrote:
    > >
    > > > =IF(A1="N/A","N/A",your_formula)
    > > >
    > > > --
    > > > Regards,
    > > > Dave
    > > >
    > > >
    > > > "Scott" wrote:
    > > >
    > > > > I am using a spreadsheet to show when required tasks are due for specific
    > > > > classes. My problem is this: when a class does not go through a specific
    > > > > portion, I put N/A in the date block for that portion, and would like it to
    > > > > put N/A in the specific date blocks for the specific tasks, not the date the
    > > > > task is due. So what I am getting is "#value!".
    > > > >
    > > > > Thanks
    > > > > Scott


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1