Spreadsheet structure - complex cost calculation

I am trying to set up a semi-automatic spreadsheet that will help me prepare quotes for building work.
I would appreciate any advice on the best set up that would for this and possible functions I would need to use to make it work. I tried finding a suitable solution or a template but to no avail.
I'll try to explain the requirements as clearly as I can, but please let me know if there is any further explanation you may require.
1. I have many tables that I set up to calculate costs and prices of particular types of work, i.e. building a brick wall or laying foundations
1.1 Each table has the same columns such as'type of resource', 'quantity', 'price per unit', 'cost', 'profit', 'price'
1.2 Each table has a different number of rows, depending on number of resources required for the particular type of work, some of the tables have multiple header rows to allow for data entry cells, such as 'length' or 'height'
1.3 I keep the tables in a separate file and just copy the ones I need for particular quote, one type of table may be used several times in a quote, depending on type of job quoted, i.e. I may have more than one wall to price
2. The main sheet of the quote has a table that lists all the items of work I need to price
2.1 The columns are: 'item id' (unique number), 'item description' and 'tender price'
2.2 'tender price' is manually linked to 'total price' in the relevant calculation table (I gathered here that perhaps using INDIRECT function will allow the link to be automatic, correct?)
2.3 Right now I use 'item id' as the name of the relevant table to be able to recognise which item it calculates
3.0 I need a summary sheet with few tables that will give me various information. The information required is:
- materials list and quantities collected from all the calculation tables
- labour list as above
- labour and materials per build stage (I need to add stages to the tables first)
I'm not sure this can work with me using separate tables for each item calculation. I think that if I put all the calculations into one, big table I may be able to pull info out by using categories, however I would like to avoid this as I would end up with very large, messy tables on larger quotes.
I have used excel and a combination of outline and pivot tables in the past, but it was by no means a perfect solution.
I hope my explanation is clear and I do appreciate your help.
Regards
Bart

Bart,
I think I have what you were looking for. I only addressed what I thought was your concern.
1. I added a table to your "general calculators" sheet, and called it "Data"
2. I utilized the VLOOKUP and the INDIRECT functions to make your Totals more dynamic.
3. The formula is going to look to the table referenced in the "A" column of the line. (A3 = 1.1)
4. The formula will then look at the column heading and find the number in the "Data" table I added.
5. The lookup will then go over this many columns to find the value of the "Total" line.
You should be able to copy this formula to all the cells you are looking for the total of. As an example, copy cell C3 to C12. Then range fill to F22. Delete the formulas in C16 and D16 as they will error, because they are not necessary. Repeat the procedure for Job 3, etc.
If you change the Job (Table) reference in column "A" this will automatically look to the correct table. If you need to add a column some day, Add the column to all the appropriate tables, then add the name and column number to "Data." It should then recalculate correctly.
I have posted the spreadsheet here:
https://www.iwork.com/r/?d=samplequoteRevised.numbers&a=p108776228
If it you cant get to it, let me know....and we can try something else...since I dont have a mobileme account.
Let me know if you have ANY questions.
Waza

Similar Messages

  • Material scale price in cost calculation

    Hi Experts,
    could any of You pls advice me with an 'inforecord scale price' - based calculation?
    My calculation - material cost - based on inforecord price, but it is not correct when I want to make a calculation for ex. pilot products. During cost calculation for different costing lot size, I have different material qty requirement. Scale price is exist in inforecord. In the calculation the system always check the scale price of the material - based on the costing lot size in the material master, and do not care about how much the actual raw material need in the calcuation.
    Ex. the scale price is 1-100 pcs X USD, 101-1000 pcs Y USD -mat.master lot size: 1000; I have a calculation for 600 pcs - which requires 60 pcs of the raw material. In this case I want the system to have the 1-100 pcs X USD - as actual need on calculation, but the system takes the 101-1000 PCS Y USD - as material lot size. So I really can not check how much the pilot will cost: 100 pcs, 400 pcs etc to produce, but I always have to maintain the component material masters with changing the calc. lot size in material master (first I have to check how much will be the consumption in the following calculation...)
    I want to have a calculation, when the real raw material consumption in the calculation is checked and the scale price is match with it.
    Do You have any good idea, how to handle?
    Br

    Dear,
    thank You for answering and investigating into this issue, You get a good point, but my setting is actually different form standard:
    In my calculation through costing variant and valuation variant - the inforecord has higher priority than the planned price - we only use planned price form mat. master if no relevant inforecord exist, but in my case there are inforecords with scale price.
    Issuing production order is not enought for me for checking all costs - some additonal cost components are exist - through overhead determination such as duty, freight,  etc. which has been defined using overhead group and overhead key, and assigned to material in material master (costing view).
    I know it is a bit more complex than a normal quantity structure calculation - but this is the one, I have to deal with. Available CO-consultant told me, this scale -price handling is MM-issue, that is why I ask MM  guys first.
    Anyone pls, have some idea about inforecord scale price in cost calculation based on component requirement in actual calculation. I would appreciate a lot.
    Br

  • Complex SQL calculated/Group Query

    I am trying to write a complex aggregate query(s) to compile a standings table for a soccer league.
    There are four related tables:
    Matches
    Goals
    Players
    teams
    I have yet to finalize the database structure so I can add fields if necessary.
    In the goals table I track the match that the goal was scored in and which player
    scored it.
    I am trying to create a query that will give me a standings table.
    The fields I need to calculate are:
    team name
    Wins
    Loses
    Draws
    For instance:  There was a match on 4/21/2012.  The players on HomeTeam(A) scored a combined 6 goals.  The players on AwayTeam(B) scored 1 goal (All stored in the Goals table).  Therefore, Hometeam won by a score of 6-1.  I need
    a query that spits out:
    Team                Wins          Losses          Draws         
    Points
    HomeTeam(A)      1                 0                 0                
    3
    AwayTeam(B)       0                 1                 0                 3
    Wins are worth 3 Losses 0 and Draws 1 point each team.
    I am a long time SQL admin, but I think the complexity of calculating this is a little beyong me.  I need some help to get where I need to be.

    Okay, I haven't yet been able to figure out the draws because of the trouble of linking back to both teams, but here's what I have so far.
    First, here is the test data:
    Declare @tvMatches Table (
    MatchID int IDENTITY(1,1)
    ,MatchDate datetime
    ,HomeTeamID int
    ,AwayTeamID int
    Declare @tvGoals Table (
    GoalID int IDENTITY(1,1)
    ,MatchID int
    ,PlayerID int
    ,TeamID int
    Declare @tvPlayers Table (
    PlayerID int IDENTITY(1,1)
    ,TeamID int
    ,PlayerName varchar(30)
    Declare @tvTeams Table (
    TeamID int IDENTITY(1,1)
    ,TeamName varchar(20)
    Insert @tvTeams
    Select 'Winners'
    Union All
    Select 'Losers'
    Union All
    Select 'Friars'
    Union All
    Select 'Planes'
    Insert @tvPlayers
    Select 1, 'Bill'
    Union All
    Select 1, 'Jim'
    Union All
    Select 1, 'Ken'
    Union All
    Select 2, 'James'
    Union All
    Select 2, 'Smithy'
    Union All
    Select 2, 'Flip'
    Union All
    Select 3, 'Dave'
    Union All
    Select 3, 'Alan'
    Union All
    Select 3, 'Ethan'
    Union All
    Select 4, 'Naomi'
    Union All
    Select 4, 'Erland'
    Union All
    Select 4, 'Alejandro'
    Insert @tvMatches
    Select '20120101', 1, 2
    Union All
    Select '20120201', 3, 4
    Union All
    Select '20120301', 4, 1
    --Winners beat Losers 3-2
    --Planes beat Friars 4-2
    --Winners beat Planes 2-1
    Insert @tvGoals --Match, Player, Team
    Select 1, 1, 1
    Union All
    Select 1, 3, 1
    Union All
    Select 1, 5, 2
    Union All
    Select 1, 6, 2
    Union All
    Select 1, 2, 1
    Union All
    Select 2, 7, 3
    Union All
    Select 2, 8, 3
    Union All
    Select 2, 10, 4
    Union All
    Select 2, 11, 4
    Union All
    Select 2, 12, 4
    Union All
    Select 2, 11, 4
    Union All
    Select 3, 1, 1
    Union All
    Select 3, 3, 1
    Union All
    Select 3, 11, 4
    Using this test data, you want to compile the actual match outcomes.  This can be problematic to do on the fly every time though, if you have a lot of matches or teams to calculate for.  But, with a simple cte, we have:
    ;with cteMatches as
    Select m.MatchID
    ,m.MatchDate
    ,m.HomeTeamID
    ,ht.TeamName HomeTeamName
    ,m.AwayTeamID
    ,at.TeamName AwayTeamName
    ,( Select Count(1)
    From @tvGoals g
    Where g.MatchID = m.MatchID
    And g.TeamID = m.HomeTeamID
    ) HomeScore
    ,( Select Count(1)
    From @tvGoals g
    Where g.MatchID = m.MatchID
    And g.TeamID = m.AwayTeamID
    ) AwayScore
    From @tvMatches m
    join @tvTeams ht
    on m.HomeTeamID = ht.TeamID
    join @tvTeams at
    on m.AwayTeamID = at.TeamID
    ) --select * from cteMatches
    This returns the MatchID, MatchDate, team information and the score.  Basically, you have the match, team and player data tied to the goals table, so you just do a count (using correlated subqueries) to get the score of each team.  Next step is
    to calculate the winner and loser (and eventually whether there even was a winner) by comparing the scores:
    ,cteWinners as
    Select cm.MatchID
    ,cm.HomeTeamID
    ,cm.HomeTeamName
    ,cm.AwayTeamID
    ,cm.AwayTeamName
    ,Case
    When cm.HomeScore > cm.AwayScore Then cm.HomeTeamID
    When cm.HomeScore < cm.AwayScore Then cm.AwayTeamID
    Else 0
    End WinningTeamID
    ,Case
    When cm.HomeScore > cm.AwayScore Then cm.AwayTeamID
    When cm.HomeScore < cm.AwayScore Then cm.HomeTeamID
    Else 0
    End LosingTeamID
    From cteMatches cm
    ) --select * from ctewinners
    This returns MatchID, team information and the ID's for winning and losing teams.  For now it returns 0 if it's a draw.  Once we know the outcomes of all the matches, we calculate the actual win/loss for each team:
    ,cteRecords as
    Select t.TeamName
    ,Count( Case
    When cw.WinningTeamID = t.TeamID Then 1
    End
    ) Wins
    ,Count( Case
    When cw.LosingTeamID = t.TeamID Then 1
    End
    ) Losses
    From @tvTeams t
    join cteWinners cw
    on t.TeamID = cw.HomeTeamID
    or t.TeamID = cw.AwayTeamID
    Group By t.TeamName
    ) --select * from cteRecords
    That last cte returns just team name, and then the number of wins and losses for each team.  This is where I got stuck with the draws, because I'm not quite sure yet how to properly assign a draw to both teams involved.
    Now, finally you put it all together with some simple match to determine the points, and there you are:
    Select TeamName
    ,Wins
    ,Losses
    ,(Wins * 3) Points
    From cteRecords

  • Weighted avg Unit Cost calculation for COGS

    Hi friends,
    Has any body done weighted avg unit cost calculation for inventory valuation and COGS calculation. In a way we need to mirror ECC material ledger functionality based on the APO data in side the planning tool.
    Any ideas on the above!!!
    Kind Regards,
    Krish

    Hi Jerry,
    Thanks for the tip. I actually needed to clean the spreadsheet up and put bogus values in to comply with company policy. Anyhow, here is a sample of the spreadsheet
    http://dl.dropbox.com/u/7499586/junk.png
    Just imagine about 100 products and several hundred raw materials, a dozen types of labor and about 30 types of packaging. It's a monster spreadsheet.
    The "units" under each product is the number of units per batch. You can see each product has two columns. One where you put in how much of a raw material, package type, and labor type go into each batch, the next calculates the cost for each item. Then it gets summed at the top for the total unit cost for that product.
    Let me know if you have any other questions about it. Thanks so much for your help!

  • How to define routes for freight cost calculation

    Hi,
    in our company we plan to use LE-TRA Transport with Freight costs calculation. To use Transport it is a must to maintain routes in all sales orders/deliveries. Currently we do not use it and now we have the challenge to define routes and later due to freight costs calculation Stages. There are different solutions for routes. In some other companys we have only routes dependent on the Transit duration, but that's all. They don't use stages and they don't use freight cost calculation in SAP.
    As I know routes should describe geographical locations (The way location A till location B). Based on the route we have a defined stage with a distance, shipping type.... That would mean for a company:  They need to analyse all delivery channels with different forwarding agents and so on. Is that possible when the forwarding agent is responsible for scheduling? That means for a company with customer around the world thousands of routes?
    Alternatively it is possible to create stages in the transport documents. Is that more recommendable? It would be nice, when someone could post his experience with that topic.
    Thank you,
    Raphael

    Hi Luis,
    thank you for the response. My problem is not the technical view. I know how to create the routes and what kind of information I need. The problem is to unterstand how this concept can operate in practise in a company with many different customer.
    The following site describes the concept of routes in SAP:
    http://blog.tkreddy.com/2010/09/17/understanding-the-concept-of-routes-le-shp-in-sap-ecc-6-0/
    A company with many delivery plants and customer around the world needs to forward all delivery channels they have to us, A route describes an area and includes stages with location A and B. The stages are assigned to a forwarding agend. Based on that information I can start a freigt cost calculation. The structure of stages and routes also depends on the situation how many different forwarding agents are involved in a delivery process.
    In my opinion it is really a big effort to find a reliable solution for the amount of routes and stages. I am thinking about to use the solution to create the stage manually in the transport document and to use the routes to describe the transit time.
    Raphael

  • Difference between cost component structure and cost component split

    can anyone explain me the difference between cost component structure and cost component split with simple example
    thanks
    santosh

    Hi ,
    cost component structure
    Definition
    Number that identifies the structure.
    Use
    In Product Cost Controlling, the cost component structure determines how the results of material costing are updated. The cost component structure groups the costs for each material according to cost component (such as material costs, internal activities, external activities, and overhead). If the material is used in the production of another material, the cost component split (which breaks down the costs according to material costs, internal activities, external activities, overhead, and so forth) remains in the system when the costs are rolled up.
    In the cost component split, you also define the following for material costing:
    Which part of the costs are fixed costs
    Which costs are
    cost of goods manufactured and what are sales and administration costs
    Which costs are relevant for stock valuation, commercial inventory valuation and tax inventory valuation
    When the cost component structure is assigned to the organizational units, you can specify that two cost component splits are created:
    Main cost component split
    This is the principal cost component split, meaning that it is used in the standard cost estimate, which can be used to update the material master. The main cost component split can be a cost component split for cost of goods manufactured or a primary cost component split.
    Auxiliary cost component split
    This can exist in addition to the main cost component split, and is not used in the standard cost estimate. It can be used for analysis purposes, in that it can be displayed with the cost estimate and passed on to Profitability Analysis.
    In Cost Center Accounting, the cost component structure determines how the results of the activity price calculation are updated. The cost component structure groups the costs for each activity type of the cost center according to components (such as material costs and labor costs). If an internal activity allocation is carried out, the cost component split (which breaks down the costs according to material, labor costs, and so forth) is retained at cost rollup.
    If the cost component split is not to be retained, you can create a switching structure for the cost component structure for Cost Center Accounting. In the switching structure, you specify which sender cost component goes into which receiver cost component.
    <b>require a cost component structure to calculate prices using cost component split.</b>
    For each cost component structure you define a component such as energy, personnel, or raw materials. The components combine all costs occuring for a particular cost element area. In this way, you ensure greater cost transparency in activity price calculation when putting together the activity type prices - for example, it becomes easier to find how much of the activity price is taken up by the material costs.
    In activity allocation, the cost component structure remains constant, meaning that the receiver takes on the sender cost elements and that the allocated costs are posted in the same cost components in the receiver as in the sender.
    A cost component structure can have a maximum of 40 defined cost components.
    Cost components are assigned to cost elements. You thereby determine which cost elements go to which rows in the structure, and how these components are updated in price calculation.
    Hope ths helps
    Please rewad points
    Sunil

  • Bom Component qty & WIP Quantity differ at Trget cost calculation

    Dear gurus,
    i am facing the problem with WIP at target cost calculation in REM.
    My issue is
    BOM Component qantity is 9.524 TO  and price is 2000 then total cost is  9.521*2000=19048.
    but in WIP Report kkas in WIP explation it takes input qty 9.52 T0 and price 2000 then total price is 19040.
    Difference is 19048 - 19040 =8
    and also when i am issuing actual qty i.e 9.524 in BOM then my price is 19048.00 ant at time of variance calculaton then quantaty variance as   9.52.0-9.524.0=-0.04  then 0.004*2000 =-8 
    Please suggest solution for this.
    Any OSSS NOTE Required
    any Quires please revert back
    REGARDS
    Avinash.pegarlawar

    Hi
    Rounding differences between target and actual values and quantities are not unlikely to occur and cannot always be avoided but can be minimized.
    Small prices and price unit of 1 are likely to cause more of these rounding differences..
    The actual credit is simply calculated as price * quantity. The target credit however is calculated during the variance calculation
    and based on the sum of all items in the itemization/cost components of the cost estimate and therefore more accurate.
    To avoid this I suggest to store the material price with a larger price unit, i.e. 1000
    Std cost release stores price upto 2 decimals and target cost calculation goes upto 3 decimals...
    Please check also the note 1265918 for more information to this topic.
    Regards
    Ajay M

  • Actual Cost Calculation in Process Order

    Hi All,
    I updated Standard cost of a raw material through a cost estimate and also ran cost estimate of the FIN that is using this raw material but when I am creating a Process order, it is taking the cost of this particular raw material from the previous estimate not the recent one to calculate the target cost. Can any body help me with this.
    Thanks
    MKR

    Hi Ashok,
    My Valuation variants for the Costing Variant of Cost Estimate and Production order (Actual/Plan) cost calculation are in Sync to get the prices according to the price indicator in material master. But when it calculates cost for a production order, it is picking up cost from the previous period for that particular raw material. I have updated the standard cost by running the cost estimate but still its not working.
    Any lead on this. This will be really appreciated.
    Thanks
    MKR

  • Target cost calculation in Process Order based on Variance Calculation

    Hi all,
    I have a question on Target cost calculation in Process Order. My understanding is, the Target Costs gets calculated when the confirmation and GR is made for the Process Order.
    But if the confirmation/GR is not done, whether the target costs gets calculated for only the activity types after the Variance Calculation (KKS2).
    I have two scenarios. In one, the target costs got calculated for the activity types without the confirmation/GR after the Variance calculation.
    In another scenario, the target costs are not getting calculated for the activity types without the confirmation/GR if I try to do the variance calculation in KKS2.
    SO i want to know which scenario is correct?
    Can anyone answer this question?
    Thanks and Regards,
    Brijesh

    Hi,
    In general, the target costs are calculated once you deliver the order.
    Target costs for the components and the activities are updated only once you deliver the order and the target cost for the finished product gets updated when you do the variance calculation.
    Consider your scenario number 1 - you said the target costs got calculated for activity types without confirmation / GR after variance calculation.
    Now, if the order is not having any status like PDLV, DLV or TECO it will not calculate the variances in the first place.
    Your second scenario is correct - without GR the system does not calculate any target costs. Also it will not calculate any variances because the order status is still not DLV.
    Best Regards,
    Sameer

  • Shipment Cost Calculation

    Dear All,
    I know that tariffzone plays a role in determining the price for the freight/Service Agent condition in case of outbound shipment cost calculation
    I have the following query in Shipment Pricing.
    Can anyone please explain whats the role of the 2 postal code columns in the tariff zone assignment?
    Also how & where I have to maintain the data for determining the tariff zone which I have assigned to the above combination.
    Please help.
    Regards,

    HI Dave,
    Thanks for the response.
    Please note that I have maintained postal codes in my Shipping point also in my customer master.
    For the combination of TP Point, Service agent, Shipping type & Country I have made the following assignment.
    I have given my shipping point Postal code in both the Postal code columns of Tarff zone assignment (say Tariff) & my customer master Postal code in both the Postal code columns of Tariff zone assignment (say Tariff1).
    Now I have maintained the condition records in TK11 for the combination of Depart. Tariff zone/Destn.Tariff zone/Service Agent i.e. Tariff/Tariff1/Service Agent
    But my condition record value is not getting determined & when I simulate my shipment cost I am getting the following error message.
    Shipment costs not yet calculated
    Shipment costs item 000001 w/ ref. to doc. $0001 item 0001
       Message no. VY104
    Goods types directory could not be determined
        Message no. VW803
    Please help to reolve this issue.
    Regards,

  • COFC - Actual cost calculation error

    Hi Friends,
    I am a PP consultant and i have a issue with cost calculation at the time of confirmation.
    There are production orders that were confirmed in year 2010 and year 2011. For year 2010 costing documents were created but not no costing docuemnts for confirmations in year 2011.
    I checked tcode COFC and found error log as : A master record for 1111/ABCD exists only in 2010.(where 1111 is cost center and ABCD is activity type.)
    I have checked the validaty of both cost center and activity type & both are valid.
    can anyone please suggest what has to be maintained for year 2011 from controlling side.
    Thanks In Advance.
    Rohit

    Hi Rohit,
    The similar error i have faced  just couple of hours back.
    I have checked up the plan prices in KP26 for the activity type and could see that they were not maintained for 2011.
    I have maintained the same for the current year and the error got resolved.
    Pls see that you are choosing the correct cost centre and activity type combination alongwith the costing version for 2011.
    Regards
    Sachin

  • Error in cost calculation for production order

    Dear All,
    I got error of cost calculation while release of Production Order due to price of some material is not mantain .
    What will happen if I release , save the Order with error & do Good Issue ???
    Ishwar

    Dear Ishwar,
    Check the log's created for costing and rectify the same.
    I feel its better to rectify the cost related errors and then release the production order and proceed to Good's Issue.
    Check whether there is a MAP for all the Raw-materials and an origin group in costing 1 view.
    The Finished product must be having a standard cost estimate that's valid for the current period.
    Revert back in case of any more help needed.
    Regards
    Mangalraj.S

  • Errors arose during actual cost calculation

    Errors arose during actual cost calculation
    No prices could be determinedfor object activitytype company code xxxx , cost center XXXX, activity type XXXX
    Pls let me know immediately friends deperate,
    regards,
    sri

    Hi
    when you gone to the transaction code Kp26 Activity typ price/ planning after give the input press period screen or F6 function key and check what price was maintained for your period 12.
    And even you do one thing go to the transaction code KS02 or 03. Give the cost center and press enter . Then from the meny bar select Environment -> whereused list->.
    And let me confirm how you run the cost estimate for the material
    bye

  • Shipment cost calculation  - configuration problem

    hello all
    we are implementing the shipment cost calculation system and so far configured only 1 service agent  .
    the problem regarding scenarios that the shipment executed by service agents that is not configured in
    the system but the invoicing party is the one ( SA) that we configured .
    ( the SA that is configured in the system is charging us for the shipments of the
       SA that is not configured. )
    how can i get the shipment cost document to open for the invoicing party ( the one that we configured )
    but still leave the shipment under the origin service agent ( the one that isn't configured )  ?
    Regards ,
    ASA .

    Hi ,
    sorry,  i wasn't precise :
    i need to open a service entry whose based on po in order to forward to financial accounting .
    ( its a separate po that isn't part of the inbound or outbound process and i open it for  SA x  )
    Y and X are differnt transportation companys but i have some cases that SA x is charging me
    for the shipment of SA y.
    the transportaion agent in VT01N is SA y and there for the shipment cost document opens for SA y and
    looks for po for SA y .
    i have to direct the system (  by some user exit / badi  ) to seek for the po of SA x ( the one whose
    charging me for the shipment ) .
    hope this help explain my problem ,
    Regards ,
    ASA
    Edited by: ASA MOKED on Apr 12, 2009 5:47 AM

  • Actual cost calculation process

    Hi, All!
    I run the Actual Cost Calculation Process and created IPV is effecting PMAC, but no lines are created in gmf_invoice_distributions.

    Hi,
    Check the unit price of the PO and the Price for the line during AP Invoice matching. If there is a difference then it automatically goes into IPV. Also check the values for profile GMF: Include Invoices in Actual Cost.
    Regards,
    Malcolm

Maybe you are looking for

  • Immediate Opening

    Integration/Software Engineer Position We have an immediate need for innovative, results-oriented people that desire a challenging, fast-paced environment in which to apply their skills.  The ideal candidate is highly motivated and possesses a profes

  • Error -10401 occurred at AI Group Config - in relation to USB-6008

    I'm attempting to run a simple vi that uses AI Aquire Waveforms.vi to input voltage data that I have coming in from the USB-6008 DAQ.  However, when I try running the program, I receive the error: Error -10401 occurred at AI Group Config Possible rea

  • Chart Multiple Series - Line/Column Alignment

    In one of the pages from the charting section of the Adobe's online Flex help, http://livedocs.adobe.com/labs/flex3/html/help.html?content=charts_types_12.html#227567 there's a picture near the top showing a line chart overlaid on a column chart, and

  • Making Panther bootable firewire drive using a Tiger 10.4.4 iBook

    I want to use original Panther installation disks to make a Panther OS on an external OWC firewire 30GB Travelstar harddrive. My Tiger iBook doesn't seem to be able to start up with the Panther disks, and I can't figure out how to get Panther onto th

  • SSRS - Interactive sorting based on aggregate function

    Hi, I'm trying to add interactive sorting to one of the columns in my tablix. The soring should be based on the LAST visit date of my child grouping. However interactive sorting is not compatible with aggregate functions apparently. I'm using the fol