JBJones82

New Member
Joined
Jun 29, 2014
Messages
9
Need some help I want to have Column A auto fill based on what zone is entered in A1. I am having some problems right now as my formula has become really long the way I been trying and does not work for all Zones. is there an array or another type of formula?


Thanks
Zone 5Coax/AerialCoax/UGFiber/AerialFiber/UG
v2241343
222393467
134133465
1653543423
14310237645

<tbody>
</tbody>

<tbody>
</tbody>
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Isnt an autofilter better for this job? Put a 'Zone' column in and filter on that.
 
Upvote 0
Perhaps some VBA then add a button to run the code

Sub mcrFilterA1()
'Clears all filters
Cells.AutoFilter
'Select cell c3 change this to the first cell
Range("C3").Select
Selection.AutoFilter
ActiveSheet.Range("$C$3:$G$8").AutoFilter Field:=1, Criteria1:=Range("A1")

End Sub
 
Upvote 0
Isnt an autofilter better for this job? Put a 'Zone' column in and filter on that.

So I thought about doing that but other people have to use the report and they are in separate zones so rather than build 12 different reports for each zone. I wanted to just enter the zone and have it fill based on what zone they enter. Plus some are very Excel Dumb.
 
Upvote 0
Build 12 different reports? Why would you need to do that with the filter? It cant be that difficult to train people to use the filter button. The data isn't sensitive between them I presume or it wouldn't all be in one workbook. You could try the VBA route but once a macro is run any actions up to that point cant be 'undone'.
 
Upvote 0

Forum statistics

Threads
1,215,137
Messages
6,123,252
Members
449,093
Latest member
Vincent Khandagale

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