ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   automatically selecting items in drop down list (https://www.excelbanter.com/excel-discussion-misc-queries/200934-automatically-selecting-items-drop-down-list.html)

Tom Mucciolo

automatically selecting items in drop down list
 
I have a sheet that returns different performance results for 21 categories,
based on a drop down list of 3 choices. Depending on the item selected from
the list (A, B, or C ), different values populate the 21 categories, and a
"total" is shown in a single cell, based on the respective choice.

Currently, I have to MANUALLY select from the drop-down list to see all
three different totals.

I would also like a "quick reference" to know all three results,
immediately, for a quick comparison.

How can I create a separate group of 3 cells, that will AUTOMATICALLY assume
that each choice in the drop-down list was made, and let me instantly see the
comparisons?

I thought of using IF, but that would still mean I would need to manually
pull the list box down and select one of the three choices.

Thanks,

Tom

elfregono

automatically selecting items in drop down list
 
Hey Tom,

Assuming the list is populated by a range of cells somewhere (containing A,
B, and C), just write formulas in 3 cells that reference each cell in that
range and perform the necessary calculations.



"Tom Mucciolo" wrote:

I have a sheet that returns different performance results for 21 categories,
based on a drop down list of 3 choices. Depending on the item selected from
the list (A, B, or C ), different values populate the 21 categories, and a
"total" is shown in a single cell, based on the respective choice.

Currently, I have to MANUALLY select from the drop-down list to see all
three different totals.

I would also like a "quick reference" to know all three results,
immediately, for a quick comparison.

How can I create a separate group of 3 cells, that will AUTOMATICALLY assume
that each choice in the drop-down list was made, and let me instantly see the
comparisons?

I thought of using IF, but that would still mean I would need to manually
pull the list box down and select one of the three choices.

Thanks,

Tom


T. Valko

automatically selecting items in drop down list
 
I thought of using IF, but that would still mean I would need
to manually pull the list box down and select one of the three choices.


No, you'd use the "IF" condition just for the single item that is selected.

IF(A1="A",do_this,IF(A1="B",do_this,IF(A1="C",do_t his,do_that)))

So, it seems to me you'd need a *separate set of calculations* that assumes
all the items have been selected. Since you haven't described what these
calculations do there's not much more I can suggest.


--
Biff
Microsoft Excel MVP


"Tom Mucciolo" <Tom wrote in message
...
I have a sheet that returns different performance results for 21
categories,
based on a drop down list of 3 choices. Depending on the item selected
from
the list (A, B, or C ), different values populate the 21 categories, and a
"total" is shown in a single cell, based on the respective choice.

Currently, I have to MANUALLY select from the drop-down list to see all
three different totals.

I would also like a "quick reference" to know all three results,
immediately, for a quick comparison.

How can I create a separate group of 3 cells, that will AUTOMATICALLY
assume
that each choice in the drop-down list was made, and let me instantly see
the
comparisons?

I thought of using IF, but that would still mean I would need to manually
pull the list box down and select one of the three choices.

Thanks,

Tom




Tom Mucciolo[_2_]

automatically selecting items in drop down list
 
yes... I did as you suggested and and it works out as I want,

Thanks for your comment!

Tom

"elfregono" wrote:

Hey Tom,

Assuming the list is populated by a range of cells somewhere (containing A,
B, and C), just write formulas in 3 cells that reference each cell in that
range and perform the necessary calculations.



"Tom Mucciolo" wrote:

I have a sheet that returns different performance results for 21 categories,
based on a drop down list of 3 choices. Depending on the item selected from
the list (A, B, or C ), different values populate the 21 categories, and a
"total" is shown in a single cell, based on the respective choice.

Currently, I have to MANUALLY select from the drop-down list to see all
three different totals.

I would also like a "quick reference" to know all three results,
immediately, for a quick comparison.

How can I create a separate group of 3 cells, that will AUTOMATICALLY assume
that each choice in the drop-down list was made, and let me instantly see the
comparisons?

I thought of using IF, but that would still mean I would need to manually
pull the list box down and select one of the three choices.

Thanks,

Tom


Tom Mucciolo[_2_]

automatically selecting items in drop down list
 
Biff,

Thanks.... I did end up creating a separate set of cells that each do the
calculations the drop down list items were each doing...

It works the way I want now.

Thanks for your comment!

Tom

"T. Valko" wrote:

I thought of using IF, but that would still mean I would need
to manually pull the list box down and select one of the three choices.


No, you'd use the "IF" condition just for the single item that is selected.

IF(A1="A",do_this,IF(A1="B",do_this,IF(A1="C",do_t his,do_that)))

So, it seems to me you'd need a *separate set of calculations* that assumes
all the items have been selected. Since you haven't described what these
calculations do there's not much more I can suggest.


--
Biff
Microsoft Excel MVP


"Tom Mucciolo" <Tom wrote in message
...
I have a sheet that returns different performance results for 21
categories,
based on a drop down list of 3 choices. Depending on the item selected
from
the list (A, B, or C ), different values populate the 21 categories, and a
"total" is shown in a single cell, based on the respective choice.

Currently, I have to MANUALLY select from the drop-down list to see all
three different totals.

I would also like a "quick reference" to know all three results,
immediately, for a quick comparison.

How can I create a separate group of 3 cells, that will AUTOMATICALLY
assume
that each choice in the drop-down list was made, and let me instantly see
the
comparisons?

I thought of using IF, but that would still mean I would need to manually
pull the list box down and select one of the three choices.

Thanks,

Tom





T. Valko

automatically selecting items in drop down list
 
You're welcome!

--
Biff
Microsoft Excel MVP


"Tom Mucciolo" wrote in message
...
Biff,

Thanks.... I did end up creating a separate set of cells that each do the
calculations the drop down list items were each doing...

It works the way I want now.

Thanks for your comment!

Tom

"T. Valko" wrote:

I thought of using IF, but that would still mean I would need
to manually pull the list box down and select one of the three choices.


No, you'd use the "IF" condition just for the single item that is
selected.

IF(A1="A",do_this,IF(A1="B",do_this,IF(A1="C",do_t his,do_that)))

So, it seems to me you'd need a *separate set of calculations* that
assumes
all the items have been selected. Since you haven't described what these
calculations do there's not much more I can suggest.


--
Biff
Microsoft Excel MVP


"Tom Mucciolo" <Tom wrote in message
...
I have a sheet that returns different performance results for 21
categories,
based on a drop down list of 3 choices. Depending on the item selected
from
the list (A, B, or C ), different values populate the 21 categories,
and a
"total" is shown in a single cell, based on the respective choice.

Currently, I have to MANUALLY select from the drop-down list to see all
three different totals.

I would also like a "quick reference" to know all three results,
immediately, for a quick comparison.

How can I create a separate group of 3 cells, that will AUTOMATICALLY
assume
that each choice in the drop-down list was made, and let me instantly
see
the
comparisons?

I thought of using IF, but that would still mean I would need to
manually
pull the list box down and select one of the three choices.

Thanks,

Tom








All times are GMT +1. The time now is 11:01 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com