+ Reply to Thread
Results 1 to 23 of 23

Date Range and calculation

  1. #1
    Registered User
    Join Date
    08-22-2005
    Posts
    3

    Date Range and calculation

    I was wondering if an array formula was best for this or hopefully there is a shorter way?

    I have a sheet (Base) which has the information for interrogation and a summary sheet (Monthly). I wish the monthly sheet to extract data from the base sheet according to the date range entered. There is two cells, with a start and end date. The rest of the fields then calculate depending on that. One of the fields needs to return an average net commission %. So, depending on the date range entered it needs to find (filter) within that date range in the Base sheet on Col P (which is list of dates of exchange), then get the average of Col Y (which is a fee amount in £) and divide it by the average of Col S (which is sale price in £).

    sorry for being long winded!

    any suggestions gratefully received.

  2. #2
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  3. #3
    Registered User
    Join Date
    08-22-2005
    Posts
    3
    knightly, many thanks for your response. the first approach reducing value to monthly one is useful and I will incorporate.

    the second approach is great also and I will be tweaking it for use with the other calcuations that I have to make. thank you again for such a clear answer.

  4. #4
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  5. #5
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  6. #6
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  7. #7
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  8. #8
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  9. #9
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  10. #10
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  11. #11
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  12. #12
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  13. #13
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  14. #14
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  15. #15
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  16. #16
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  17. #17
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  18. #18
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  19. #19
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  20. #20
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  21. #21
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  22. #22
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

  23. #23
    sirknightly
    Guest

    Re: Date Range and calculation


    Green,

    Will the date ranges vary, or are you just trying to get a monthly
    summary of the numbers (and therefore the "Monthly" name for the tab).
    If you're just looking for a monthly summary, I'd add a new column to
    your data table that calculates the month of each date like this:

    =DATE(YEAR(A1),MONTH(A1),1)

    and then create a PivotTable that references that data range and
    summarize by the new "Month" field.

    If you are looking for a way to select between dates, I'm thinking an
    array formula would be best for that. Assuming that your criteria are
    in A1 (first date) and A2 (subsequent date), and replacing GT and LT
    with the appropriate symbols below, change the ranges in base as
    necessary and enter as an array formula:

    =(SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!Y1:Y25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))/
    (SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,Base!S1:S25,0),0))/SUM(IF(Base!P1:P25GT=Base!A1,IF(Base!P1:P25LT=Base!A2,1,0),0)))

    Knightly

    vgreen Wrote:
    > I was wondering if an array formula was best for this or hopefully
    > there
    > is a shorter way?
    >
    > I have a sheet (Base) which has the information for interrogation and
    > a
    > summary sheet (Monthly). I wish the monthly sheet to extract data
    > from
    > the base sheet according to the date range entered. There is two
    > cells,
    > with a start and end date. The rest of the fields then calculate
    > depending on that. One of the fields needs to return an average net
    > commission %. So, depending on the date range entered it needs to
    > find
    > (filter) within that date range in the Base sheet on Col P (which is
    > list of dates of exchange), then get the average of Col Y (which is a
    > fee amount in £) and divide it by the average of Col S (which is sale
    > price in £).
    >
    > sorry for being long winded!
    >
    > any suggestions gratefully received.
    >
    >
    > --
    > vgreen
    > ------------------------------------------------------------------------
    > vgreen's Profile:
    > http://www.excelforum.com/member.php...o&userid=26510
    > View this thread:
    > http://www.excelforum.com/showthread...hreadid=397768



    --
    sirknightly

+ 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