View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips Bob Phillips is offline
external usenet poster
 
Posts: 10,593
Default expanding results

Try this

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Const WS_RANGE As String = "A1" '<=== change to suit

If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
Me.Rows("2:4").Hidden = False
Else
Me.Rows("2:4").Hidden = True
End If

End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.





--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"CheekyChappie" wrote in message
...
ok, here is the detail


TOTAL PRODUCTS 500
Product A 50
Product B 150
Product C 300

So the Products are directly below the total line.

I want to be able to show the TOTAL PRODUCTS line only, but if they click

on
that cell, it expands to show the products underneath as it is about, and
again to minimise them.

Hope this is clearer.







"Bob Phillips" wrote:

Can you detail the data, where is the Product 1 data, Product 2 etc.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"CheekyChappie" wrote in

message
...
I have a list of data which sums up to make the total. What I want to

do
is
hide the detail, but show it if someone clicks on the total.

For example, I have Product 1, product 2 and product 3 listed with

their
sales next to them.

The top row is TOTAL SALES and has their combined total. I want to be

able
to hide the product detail, but click on the TOTAL SALES cell to

expand
and
then contract the data - can this be done?