ranges to repeat

vinod9111

Active Member
Joined
Jan 21, 2009
Messages
426
Is there any short cut for repeating the ranges in a formula( array).
for instance in the below formuala i have to repeat the range E3:E5

=SUMPRODUCT(--(E3:E5="d")+(--(E3:E5="v")))

any ideas on this
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
It will be specific to the formula, but in the example you gave you can improve its efficiency and shorten it by using this instead:
Code:
=SUM(COUNTIF(E3:E5,{"d","v"}))


By the way, in your Sumproduct formula, because you are adding the Boolean result arrays, you don't need the negation:
Code:
=SUMPRODUCT((E3:E5="d")+(E3:E5="v"))
 
Upvote 0
used a named range but it will probably be more characters than the original text. Thks

Kaps
 
Upvote 0

Forum statistics

Threads
1,215,063
Messages
6,122,928
Members
449,094
Latest member
teemeren

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top