+ Reply to Thread
Results 1 to 3 of 3

conditional formatting total

  1. #1
    Tiya
    Guest

    conditional formatting total

    Hi
    I am Useing conditional formatting to highlight items that are in a list
    on the worksheet with function
    =countif($d$1:$d$6,$A2)
    is there any way when rows are selected can i get total of any perticular
    column like qty filed or total filed etc..

    Any help.
    Tiya

  2. #2
    Patrick Molloy
    Guest

    RE: conditional formatting total

    without code....make sure the status bar is shown, and you can set the field
    at the bottom right to show count or sum etc.

    conditional formatting can't be used to do calculations.

    you could use VBA to retrun the sum of a selected region...try the
    Selection_Changed event like this...


    Option Explicit

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Dim sum As Double
    Dim cell As Range
    Dim ok As Boolean
    For Each cell In Target.Cells
    If Not IsEmpty(cell) Then
    If IsNumeric(cell.Value) Then
    ok = True
    sum = sum + cell.Value
    End If
    End If

    Next
    If ok Then
    Application.StatusBar = "Total of selection = " & sum
    Else
    Application.StatusBar = False
    End If

    End Sub

    "Tiya" wrote:

    > Hi
    > I am Useing conditional formatting to highlight items that are in a list
    > on the worksheet with function
    > =countif($d$1:$d$6,$A2)
    > is there any way when rows are selected can i get total of any perticular
    > column like qty filed or total filed etc..
    >
    > Any help.
    > Tiya


  3. #3
    Tiya
    Guest

    RE: conditional formatting total

    Thank you vey much Patrick Molloy

    Tiya

    "Patrick Molloy" wrote:

    > without code....make sure the status bar is shown, and you can set the field
    > at the bottom right to show count or sum etc.
    >
    > conditional formatting can't be used to do calculations.
    >
    > you could use VBA to retrun the sum of a selected region...try the
    > Selection_Changed event like this...
    >
    >
    > Option Explicit
    >
    > Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    > Dim sum As Double
    > Dim cell As Range
    > Dim ok As Boolean
    > For Each cell In Target.Cells
    > If Not IsEmpty(cell) Then
    > If IsNumeric(cell.Value) Then
    > ok = True
    > sum = sum + cell.Value
    > End If
    > End If
    >
    > Next
    > If ok Then
    > Application.StatusBar = "Total of selection = " & sum
    > Else
    > Application.StatusBar = False
    > End If
    >
    > End Sub
    >
    > "Tiya" wrote:
    >
    > > Hi
    > > I am Useing conditional formatting to highlight items that are in a list
    > > on the worksheet with function
    > > =countif($d$1:$d$6,$A2)
    > > is there any way when rows are selected can i get total of any perticular
    > > column like qty filed or total filed etc..
    > >
    > > Any help.
    > > Tiya


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1