Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a date in cell C90.
I need a formula in K90 that keeps the cell blank when the month of today() does not exceed 1 full month after the month in C90. Eg, if the date in C90 is 3rd Jan 07 and the month of today() is up to and including Feb, I want the cell to be blank. As soon as the month of today() = March, then I want a figure to be shown, i.e. I want to be able to perform my getpivotdata function. Any ideas? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Sarah,
Try this:- =IF(TODAY()-C9030,"","What figure would you like ?") "Sarah (OGI)" wrote: I have a date in cell C90. I need a formula in K90 that keeps the cell blank when the month of today() does not exceed 1 full month after the month in C90. Eg, if the date in C90 is 3rd Jan 07 and the month of today() is up to and including Feb, I want the cell to be blank. As soon as the month of today() = March, then I want a figure to be shown, i.e. I want to be able to perform my getpivotdata function. Any ideas? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
What I should have done is read you post correctly and then I would have done
this instead:- =IF(TODAY()<=EOMONTH(C90,1),"","What figure would you like ?") This requires the analysis tool pack addin. Tools|Addins|analysis toolpack Mike "Sarah (OGI)" wrote: I have a date in cell C90. I need a formula in K90 that keeps the cell blank when the month of today() does not exceed 1 full month after the month in C90. Eg, if the date in C90 is 3rd Jan 07 and the month of today() is up to and including Feb, I want the cell to be blank. As soon as the month of today() = March, then I want a figure to be shown, i.e. I want to be able to perform my getpivotdata function. Any ideas? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Sarah
Try =IF(MONTH(TODAY())-MONTH(C90)<2,"",your_value) -- Regards Roger Govier "Sarah (OGI)" wrote in message ... I have a date in cell C90. I need a formula in K90 that keeps the cell blank when the month of today() does not exceed 1 full month after the month in C90. Eg, if the date in C90 is 3rd Jan 07 and the month of today() is up to and including Feb, I want the cell to be blank. As soon as the month of today() = March, then I want a figure to be shown, i.e. I want to be able to perform my getpivotdata function. Any ideas? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
MAX figure within a date range as a function of today()'s date | Excel Worksheet Functions | |||
SUMIF within date range as a function of today()'s date | Excel Worksheet Functions | |||
Show a date based on today | Excel Worksheet Functions | |||
Show a date based on today | Excel Worksheet Functions | |||
Show a date based on today | Excel Worksheet Functions |