Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default conditional formulas with 12 conditions

This particular issue is a comparison of sorts...I want a column of formulas
to change with the month referenced in another cell.

I have a "now()" function formatted to show a two-digit number for the
month. I have 12 columns with month headings (Jan, Feb, etc.); underneath the
month headings, I'll store the reconciled quantities that get compared to the
current quantities (if the change between the current & reconciled quantities
is greater than 10%, a format change occurs & the cell displays the lower of
the two quantities). I have a list of what could be hundreds of items with a
corresponding current quantity. I want to reconcile between the current
quantity & the reconciled quantity each month but I want to keep the history
of the reconciled quantities too. I'm envisioning a column with formulas that
reference the now() function & pull in the appropriate value from the columns
with current month's reconcile data.

Basically, if month = 02, use reconciledata from column Feb for specific
item (continue to fill this formula for all items; change each month)
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default conditional formulas with 12 conditions

And, for the record, I could just insert a new month column each month, but I
enjoy complication sometimes. If the replies aren't fast & furious, the
former might be just what I'll do.

"SPB2009" wrote:

This particular issue is a comparison of sorts...I want a column of formulas
to change with the month referenced in another cell.

I have a "now()" function formatted to show a two-digit number for the
month. I have 12 columns with month headings (Jan, Feb, etc.); underneath the
month headings, I'll store the reconciled quantities that get compared to the
current quantities (if the change between the current & reconciled quantities
is greater than 10%, a format change occurs & the cell displays the lower of
the two quantities). I have a list of what could be hundreds of items with a
corresponding current quantity. I want to reconcile between the current
quantity & the reconciled quantity each month but I want to keep the history
of the reconciled quantities too. I'm envisioning a column with formulas that
reference the now() function & pull in the appropriate value from the columns
with current month's reconcile data.

Basically, if month = 02, use reconciledata from column Feb for specific
item (continue to fill this formula for all items; change each month)

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default conditional formulas with 12 conditions

Can you just sketch out what your data looks like? I think you have
something like this:

Name Jan Feb Mar Apr
item1 x1 y1 z1
item2 x2 y2 z2
item3 x3 y2 z3

etc.

Is this on one sheet for one year, a similar sheet for another year,
with another sheet where you want the results? Can you describe again
what you want to achieve with this data?

I'm a bit confused.

Pete

On Feb 3, 8:31*pm, SPB2009 wrote:
And, for the record, I could just insert a new month column each month, but I
enjoy complication sometimes. If the replies aren't fast & furious, the
former might be just what I'll do.



"SPB2009" wrote:
This particular issue is a comparison of sorts...I want a column of formulas
to change with the month referenced in another cell.


I have a "now()" function formatted to show a two-digit number for the
month. I have 12 columns with month headings (Jan, Feb, etc.); underneath the
month headings, I'll store the reconciled quantities that get compared to the
current quantities (if the change between the current & reconciled quantities
is greater than 10%, a format change occurs & the cell displays the lower of
the two quantities). I have a list of what could be hundreds of items with a
corresponding current quantity. I want to reconcile between the current
quantity & the reconciled quantity each month but I want to keep the history
of the reconciled quantities too. I'm envisioning a column with formulas that
reference the now() function & pull in the appropriate value from the columns
with current month's reconcile data.


Basically, if month = 02, use reconciledata from column Feb for specific
item (continue to fill this formula for all items; change each month)- Hide quoted text -


- Show quoted text -


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default conditional formulas with 12 conditions

I never realized how difficult it is to verbalize these sheets (much truth in
a picture being worth a bunch of words).
Yes, this is one sheet for the entire year.

now()
Name current qty "if" january feb
item1 x1 y1 z1
item2 x2 y2 z2
item3 x3 y3 z3

the "if" column: if now()=1 use y(1,2,3...), if now()=2 use z(1,2,3...)

and the if column's formulas should change with the now function's value
(downward fill for the column). also, the if column compare's the current
quantity to the reconcile quantity; if column will display lowest of two
quantities if difference between current & reconcile (monthlys) is 10%of
current qty.


"Pete_UK" wrote:

Can you just sketch out what your data looks like? I think you have
something like this:

Name Jan Feb Mar
item1 x1 y1 z1
item2 x2 y2 z2
item3 x3 y2 z3

etc.

Is this on one sheet for one year, a similar sheet for another year,
with another sheet where you want the results? Can you describe again
what you want to achieve with this data?

I'm a bit confused.

Pete

On Feb 3, 8:31 pm, SPB2009 wrote:
And, for the record, I could just insert a new month column each month, but I
enjoy complication sometimes. If the replies aren't fast & furious, the
former might be just what I'll do.



"SPB2009" wrote:
This particular issue is a comparison of sorts...I want a column of formulas
to change with the month referenced in another cell.


I have a "now()" function formatted to show a two-digit number for the
month. I have 12 columns with month headings (Jan, Feb, etc.); underneath the
month headings, I'll store the reconciled quantities that get compared to the
current quantities (if the change between the current & reconciled quantities
is greater than 10%, a format change occurs & the cell displays the lower of
the two quantities). I have a list of what could be hundreds of items with a
corresponding current quantity. I want to reconcile between the current
quantity & the reconciled quantity each month but I want to keep the history
of the reconciled quantities too. I'm envisioning a column with formulas that
reference the now() function & pull in the appropriate value from the columns
with current month's reconcile data.


Basically, if month = 02, use reconciledata from column Feb for specific
item (continue to fill this formula for all items; change each month)- Hide quoted text -


- Show quoted text -



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default conditional formulas with 12 conditions

Okay, according to my mock-up you have a NOW() function in A1
(although I've use =TODAY() as you don't seem to be interested in the
time element), and also in column A you have the names. Your current
quantity is in column B, so that your "IF" column is C. You then have
columns D to O for your monthly quantities, with the headers on row 2.
Put this formula in C3:

=MIN(INDEX(D3:O3,MONTH(A$1)),B3)

and copy it down. It will give you the lower of the two values from
the current quantity and the quantity in the appropriate month column.
I didn't really understand what your last sentence meant - do you want
to display the lowest or not?

Hope this helps.

Pete


On Feb 4, 9:29*pm, SPB2009 wrote:
I never realized how difficult it is to verbalize these sheets (much truth in
a picture being worth a bunch of words).
Yes, this is one sheet for the entire year.

now() * * * * * * * * * * * * *
Name * *current qty * * * * "if" * * *january feb
item1 * x1 * * * * * * *y1 * * *z1
item2 * x2 * * * * * * *y2 * * *z2
item3 * x3 * * * * * * *y3 * * *z3

the "if" column: if now()=1 use y(1,2,3...), if now()=2 use z(1,2,3....)

and the if column's formulas should change with the now function's value
(downward fill for the column). also, the if column compare's the current
quantity to the reconcile quantity; if column will display lowest of two
quantities if difference between current & reconcile (monthlys) is 10%of
current qty.



"Pete_UK" wrote:
Can you just sketch out what your data looks like? I think you have
something like this:


Name * * Jan * *Feb * *Mar
item1 * * * x1 * * *y1 * * *z1
item2 * * * x2 * * *y2 * * *z2
item3 * * * x3 * * *y2 * * *z3


etc.


Is this on one sheet for one year, a similar sheet for another year,
with another sheet where you want the results? Can you describe again
what you want to achieve with this data?


I'm a bit confused.


Pete


On Feb 3, 8:31 pm, SPB2009 wrote:
And, for the record, I could just insert a new month column each month, but I
enjoy complication sometimes. If the replies aren't fast & furious, the
former might be just what I'll do.


"SPB2009" wrote:
This particular issue is a comparison of sorts...I want a column of formulas
to change with the month referenced in another cell.


I have a "now()" function formatted to show a two-digit number for the
month. I have 12 columns with month headings (Jan, Feb, etc.); underneath the
month headings, I'll store the reconciled quantities that get compared to the
current quantities (if the change between the current & reconciled quantities
is greater than 10%, a format change occurs & the cell displays the lower of
the two quantities). I have a list of what could be hundreds of items with a
corresponding current quantity. I want to reconcile between the current
quantity & the reconciled quantity each month but I want to keep the history
of the reconciled quantities too. I'm envisioning a column with formulas that
reference the now() function & pull in the appropriate value from the columns
with current month's reconcile data.


Basically, if month = 02, use reconciledata from column Feb for specific
item (continue to fill this formula for all items; change each month)- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default conditional formulas with 12 conditions

That worked perfectly; I'd send u $5 if I had your address.
And, yes, I wanted/want the lowest quant displayed.

"Pete_UK" wrote:

Okay, according to my mock-up you have a NOW() function in A1
(although I've use =TODAY() as you don't seem to be interested in the
time element), and also in column A you have the names. Your current
quantity is in column B, so that your "IF" column is C. You then have
columns D to O for your monthly quantities, with the headers on row 2.
Put this formula in C3:

=MIN(INDEX(D3:O3,MONTH(A$1)),B3)

and copy it down. It will give you the lower of the two values from
the current quantity and the quantity in the appropriate month column.
I didn't really understand what your last sentence meant - do you want
to display the lowest or not?

Hope this helps.

Pete


On Feb 4, 9:29 pm, SPB2009 wrote:
I never realized how difficult it is to verbalize these sheets (much truth in
a picture being worth a bunch of words).
Yes, this is one sheet for the entire year.

now()
Name current qty "if" january feb
item1 x1 y1 z1
item2 x2 y2 z2
item3 x3 y3 z3

the "if" column: if now()=1 use y(1,2,3...), if now()=2 use z(1,2,3....)

and the if column's formulas should change with the now function's value
(downward fill for the column). also, the if column compare's the current
quantity to the reconcile quantity; if column will display lowest of two
quantities if difference between current & reconcile (monthlys) is 10%of
current qty.



"Pete_UK" wrote:
Can you just sketch out what your data looks like? I think you have
something like this:


Name Jan Feb Mar
item1 x1 y1 z1
item2 x2 y2 z2
item3 x3 y2 z3


etc.


Is this on one sheet for one year, a similar sheet for another year,
with another sheet where you want the results? Can you describe again
what you want to achieve with this data?


I'm a bit confused.


Pete


On Feb 3, 8:31 pm, SPB2009 wrote:
And, for the record, I could just insert a new month column each month, but I
enjoy complication sometimes. If the replies aren't fast & furious, the
former might be just what I'll do.


"SPB2009" wrote:
This particular issue is a comparison of sorts...I want a column of formulas
to change with the month referenced in another cell.


I have a "now()" function formatted to show a two-digit number for the
month. I have 12 columns with month headings (Jan, Feb, etc.); underneath the
month headings, I'll store the reconciled quantities that get compared to the
current quantities (if the change between the current & reconciled quantities
is greater than 10%, a format change occurs & the cell displays the lower of
the two quantities). I have a list of what could be hundreds of items with a
corresponding current quantity. I want to reconcile between the current
quantity & the reconciled quantity each month but I want to keep the history
of the reconciled quantities too. I'm envisioning a column with formulas that
reference the now() function & pull in the appropriate value from the columns
with current month's reconcile data.


Basically, if month = 02, use reconciledata from column Feb for specific
item (continue to fill this formula for all items; change each month)- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default conditional formulas with 12 conditions

Glad it worked for you - thanks for feeding back.

Pete

On Feb 5, 4:12*pm, SPB2009 wrote:
That worked perfectly; I'd send u $5 if I had your address.
And, yes, I wanted/want the lowest quant displayed.



"Pete_UK" wrote:
Okay, according to my mock-up you have a NOW() function in A1
(although I've use =TODAY() as you don't seem to be interested in the
time element), and also in column A you have the names. Your current
quantity is in column B, so that your "IF" column is C. You then have
columns D to O for your monthly quantities, with the headers on row 2.
Put this formula in C3:


=MIN(INDEX(D3:O3,MONTH(A$1)),B3)


and copy it down. It will give you the lower of the two values from
the current quantity and the quantity in the appropriate month column.
I didn't really understand what your last sentence meant - do you want
to display the lowest or not?


Hope this helps.


Pete


On Feb 4, 9:29 pm, SPB2009 wrote:
I never realized how difficult it is to verbalize these sheets (much truth in
a picture being worth a bunch of words).
Yes, this is one sheet for the entire year.


now() * * * * * * * * * * * * *
Name * *current qty * * * * "if" * * *january feb
item1 * x1 * * * * * * *y1 * * *z1
item2 * x2 * * * * * * *y2 * * *z2
item3 * x3 * * * * * * *y3 * * *z3


the "if" column: if now()=1 use y(1,2,3...), if now()=2 use z(1,2,3....)


and the if column's formulas should change with the now function's value
(downward fill for the column). also, the if column compare's the current
quantity to the reconcile quantity; if column will display lowest of two
quantities if difference between current & reconcile (monthlys) is 10%of
current qty.


"Pete_UK" wrote:
Can you just sketch out what your data looks like? I think you have
something like this:


Name * * Jan * *Feb * *Mar
item1 * * * x1 * * *y1 * * *z1
item2 * * * x2 * * *y2 * * *z2
item3 * * * x3 * * *y2 * * *z3


etc.


Is this on one sheet for one year, a similar sheet for another year,
with another sheet where you want the results? Can you describe again
what you want to achieve with this data?


I'm a bit confused.


Pete


On Feb 3, 8:31 pm, SPB2009 wrote:
And, for the record, I could just insert a new month column each month, but I
enjoy complication sometimes. If the replies aren't fast & furious, the
former might be just what I'll do.


"SPB2009" wrote:
This particular issue is a comparison of sorts...I want a column of formulas
to change with the month referenced in another cell.


I have a "now()" function formatted to show a two-digit number for the
month. I have 12 columns with month headings (Jan, Feb, etc.); underneath the
month headings, I'll store the reconciled quantities that get compared to the
current quantities (if the change between the current & reconciled quantities
is greater than 10%, a format change occurs & the cell displays the lower of
the two quantities). I have a list of what could be hundreds of items with a
corresponding current quantity. I want to reconcile between the current
quantity & the reconciled quantity each month but I want to keep the history
of the reconciled quantities too. I'm envisioning a column with formulas that
reference the now() function & pull in the appropriate value from the columns
with current month's reconcile data.


Basically, if month = 02, use reconciledata from column Feb for specific
item (continue to fill this formula for all items; change each month)- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -


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
Using formulas in conditions (SUMIF, AVERAGEIF) Jan Kucera New Users to Excel 15 October 4th 07 05:51 AM
Formulas with conditions EG Excel Worksheet Functions 2 October 9th 06 06:40 PM
how do i set a formulas with two conditions using countif kiko31 Excel Discussion (Misc queries) 3 June 25th 06 01:38 PM
Conditional Formatting for more than 3 conditions MMM Excel Worksheet Functions 4 March 9th 06 01:43 AM
Need Formulas for counting multiple conditions OrdOff Excel Worksheet Functions 4 July 3rd 05 06:12 PM


All times are GMT +1. The time now is 10:06 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"