Year-To-Date Formula

I would like to write a BSO formula for the YTD member (instead of using the DTS). My outline has 2 dimensions, Time and View as below:
Time
-- 2006
-------2006 Q1
-------------2006Jan
-------------2006Feb
-- 2007
-------2007 Q1
-------------2007Jan
-------------2007Feb
View
--MTD
--YTD
I do not want to hardcode the years in the formula. Any suggestion or sample?
Thanks in advance

Well, from my experience, a basic sumrange works best.
If you had years and period separated out into 2 dimensions you would not have to do any hardcoding... but there is an alternative.
YTD syntax with broken out year/period dimensions would look like the following:
@Sumrange(@Currmbr(Account), Jan:@Currmbr(Period));
you could use the @concatenate function to provide you with a bit of flexibility... but you have to make it a little complex using subvars... example...
FIX( @Relative(&Year1, 0)) where year1 is 2006.
@Sumrange(@Currmbr(Account), @Member(@Concatenate(&year1, "Jan")):@Currmbr(Period));
ENDFIX
this would require you to update subvars, and also create distinct fix statements for each year you wanted to calculate but if you only cared about the 3 most recent years, you would not have to update the calc every time. (3 fix statements, with 3 subvars with the above syntax)
as a warning... the @member function can take forever to process (as it has to look through every member in the dimension before it can resolve a name), so the larger your time dimension gets (and it will grow over time with the current structure), the longer the calc will take.
Hope this helps a little...
-Matt

Similar Messages

  • Creating a Fiscal Date formula

    I have created a Crystal Report and wrote a formula that allowed me to match my database entries to my fiscal months.  However, my subsequent year to date formula based off my month to date formula will only bring in current month data.  It won't bring in previous month data.  Is there an easy method within Crystal Reports to set the MonthtoDate function to a fiscal month?  Or a formula that will use the MonthtoDate function based on a fiscal month rather than a calendar month?

    Ian,
    Formula below selects the cost to use for the current month costs.  It works well.
    if ({@Cur_Mon})= "January" then {COST.TOTAL}
    else if ({@Cur_Mon}) = "February" then {COST.TOTAL}
    else if ({@Cur_Mon}) = "March" then {COST.TOTAL}
    else if ({@Cur_Mon}) = "April" then {COST.TOTAL}
    else if ({@Cur_Mon}) = "May" then {COST.TOTAL}
    else if ({@Cur_Mon}) = "June" then {COST.TOTAL}
    else if ({@Cur_Mon}) = "July" then {COST.TOTAL}
    else if ({@Cur_Mon}) = "August" then {COST.TOTAL}
    else if ({@Cur_Mon}) = "September" then {COST.TOTAL}
    else if ({@Cur_Mon}) = "October" then {COST.TOTAL}
    else if ({@Cur_Mon}) = "November" then {COST.TOTAL}
    else if ({@Cur_Mon}) = "December" then {COST.TOTAL}
    Formula below creates "Cur_Mon".  Selects the dates that the costs were incurred correctly into the fiscal month.
    if {@Fiscal_Month}in DateTime(2011, 01, 01, 0,0,0) to DateTime(2011, 01, 29, 0, 0, 0)
    then "January"
    else if {@Fiscal_Month} in DateTime(2011, 01, 30, 0, 0, 0) to DateTime(2011, 03, 05, 0, 0, 0)
    then "February"
    else if {@Fiscal_Month} in DateTime(2011, 03, 06, 0, 0, 0) to DateTime(2011, 04, 02, 0, 0, 0)
    then "March"
    else if {@Fiscal_Month} in DateTime(2011, 04, 03, 0, 0, 0) to DateTime(2011, 04, 30, 0, 0, 0)
    then "April"
    else if {@Fiscal_Month} in DateTime(2011, 05, 01, 0, 0, 0) to DateTime(2011, 06, 04, 0, 0, 0)
    then "May"
    else if {@Fiscal_Month} in DateTime(2011, 06, 05, 0, 0, 0) to DateTime(2011, 07, 02, 0, 0, 0)
    then "June"
    else if {@Fiscal_Month} in DateTime(2011, 07, 03, 0, 0, 0) to DateTime(2011, 07, 30, 0, 0, 0)
    then "July"
    else if {@Fiscal_Month} in DateTime(2011, 07, 31, 0, 0, 0) to DateTime(2011, 09, 03, 0, 0, 0)
    then "August"
    else if {@Fiscal_Month} in DateTime(2011, 09, 04, 0, 0, 0) to DateTime(2011, 10, 01, 0, 0, 0)
    then "September"
    else if {@Fiscal_Month} in DateTime(2011, 10, 02, 0, 0, 0) to DateTime(2011, 10, 29, 0, 0, 0)
    then "October"
    else if {@Fiscal_Month} in DateTime(2011, 10, 30, 0, 0, 0) to DateTime(2011, 12, 03, 0, 0, 0)
    then "November"
    else if {@Fiscal_Month} in DateTime(2011, 12, 04, 0, 0, 0) to DateTime(2011, 12, 31, 0, 0, 0)
    then "December"
    else "Frog-guts"
    Fiscal_Month actually compares two date fields in the database and uses the one which is not empty.
    The formula below is my "Year to Date" formula.  I've tried several different ways to write it, but it just mimmicks my current month formula.
    In the end is just is a simpler way to write my first formula above.  How can I make my year to date formula add all the costs that have occured to date?
    if ({@Cur_Mon}in ["January", "February","March","April","May","June","July","August","September",
    "August","October","November","December"]) then {COST.TOTAL}

  • Year to Date and Monthly totals

    I know that this is rather simplistic, but I'm new to Discoverer and need to set up a bunch of sales reports with MTD and YTD columns. I'm going to be using the same SQL query for many of my reports but customizing the reports to show sales by state, product line, etc.
    Is there a formula/function I can use in Discover for the Month to Date and Year to Date totals?
    Thanks,
    Joseph

    Hi Joseph
    You can use the analytic range SUM calculation for these. For the month to date, use the a PARTITION BY of month with a range of all the preceding rows in the partition up to and including the current row. For the year, you would simply change the PARTITION BY to be the year.
    Here are some examples drawn from my own database:
    I have the following items:
    ORDER_YEAR
    ORDER_MONTH
    ORDER_DATE
    SELLING_PRICE
    With these defined, the formula for month to date is:
    SUM(Sales.Selling Price SUM) OVER (PARTITION BY ORDER_MONTH ORDER BY ORDER_DATE ASC ROWS UNBOUNDED PRECEDING)
    The formlua for year to date is:
    SUM(Selling Price SUM) OVER(PARTITION BY ORDER_YEAR  ORDER BY  ORDER_DATE ASC  ROWS  UNBOUNDED PRECEDING )
    Basically what we are doing is telling Discoverer to SUM the SELLING_PRICE, and you should be able to take these and adjust them for your own report.
    Let me take a look at the month to end and describe what is going on. Basically the PARTITION BY is defining a set of rows which are to be included. In this case it is all rows that have the same ORDER_MONTH. The ORDER BY clause tells Discoverer to place the items in order, with the oldest order first. The ROWS UNBOUNDED PRECEDING tells Discoverer to SUM all of the items within the set (within the PARTITION BY) from the oldest item (UNBOUNDED PRECEDING) to and including the current item. We could have added a BETWEEN clause too but that is implied. With a BETWEEN clause it would look like this:
    SUM(Sales.Selling Price SUM) OVER (PARTITION BY ORDER_MONTH ORDER BY ORDER_DATE ASC ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW)
    If you want the current row to be included with UNBOUNDED PRECEDING you don't need to explicitly name it because that is the default. Other options you could use are these:
    UNBOUNDED FOLLOWING - this SUMS to the end of the PARTITION
    ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING - you can guess that this will add all of the items, which you will rarely use because if you omit the ROWS command then this range between first and last is actually the default
    Rather than ROWS BETWEEN you can also say RANGE BETWEEN, like this:
    SUM(Sales.Selling Price SUM) OVER (PARTITION BY ORDER_MONTH ORDER BY ORDER_DATE ASC RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW)
    I hope this little dissertation on running totals helps.
    Best wishes
    Michael

  • Month to Date and Year to date calculation

    Hello Experts,
    It would be great If you could provide the formula to implement in BO universe or in the Reporting level for the below requirement.
    MTD, LastMonth, Year to Date, Last to LastMonth and examples are below.
    Last Week:
    Eg: Monday through Sunday
    Description: Based on Todayu2019s date, select the Monday of the previous week for the start date and Sunday will be the end date.
    Example:
    If Today is May 22, 2009
    The result would be, Monday = May 11, 2009, Sunday = May 17, 2009
    MTD:
    If Today is May 22, 2009
    I need a result MTD = May 1, 2009 u2013 May 21, 2009
    LastMonth:
    If Today is May 22, 2009
    I need a result LastMaont = April 1, 2009 u2013 April 30, 2009
    Last to LastMonth:
    If Today is May 22, 2009
    I need a result LastMaont = March 1, 2009 u2013 March 31, 2009
    Thank you.

    Nisniki,
    Here are the methods using WebI:
    MTD: 
    Create a local variable "MTD Start"
    =RelativeDate(LastDayOfMonth(RelativeDate(CurrentDate();-30));1)
    Create a local variable "MTD End"
    =currentdate()
    LastMonth
    =LastDayOfMonth(RelativeDate(CurrentDate();-30))
    Year to Date
    create a local variable "YTD Begin"
    =ToDate("01/01/"+FormatNumber(Year(CurrentDate());"####");"mm/dd/yyyy")
    (reuse "MTD End" or build a "YTD End" variable same as "MTD End")
    Last to LastMonth
    (similiar to MTD, but using "60" versus "30" to move back two months versus moving back 1 month.
    To perform this stuff in the universe requires an understanding of the SQL syntax for the paricular vendor your are working with.  ANSI SQL agrees to represent and compute dates uniformly, however, the functions to make it happen varies by the vendor.
    Thanks,
    John

  • Extract Month & Year  From Date

    Hi All,
    I have a key figure quantity and i want the data on date,for the month and for the year.
    i create the variables for the date,for the month(ie from date to date) and for the year(ie, from date to date) seperatly that means i have three input variables which may sometimes create confusion.
    My problem is that I want to enter only date and the variable itself calculate the month and year from the date so that it returns the data as desired above.
    for eg. : Now i to enter date : 3/14/2009
              enter MTD (FROM/TO) : 3/01/2009 - 3/14/2009
              enter YTD (FROM/TO) : 4/01/2008 - 3/14/2009
    I want to enter only date : 3/14/2009
    and the variable itself extract the month and year till date.
    and also the same variable calculates number of days so that need not to take the formula variable of date difference to calculate the average qty.
    Neha..

    Hi,
    1. Create User Entry Variable on 0CALDAY : Name = ZCDAY.
    2. Craete a Customer Exit Variable on 0CALDAY: Name  = ZMTD.
    3. Craete a Customer Exit Variable on 0CALDAY: Name  = YMTD.
    Properties of Customer Exit Variables.
    Variable reporesents = Single
    Variable Entry = Mandatory
    Processing By = Customer Exit.
    Character = Calender Day
    Here I'm thinking that ZKF is your key figure.
    In columns you create two selections one is for MTD and other is for YTD.
    In MTD selection, drag and drop ZKF and Drag and Drop 0CALDAY and then Right Clcik and Restrict-->
    Selection = Value Range. (In Between) and restrict with the follwoing Variables
    []ZMTD; ZCDAY.
    In YTD selection, drag and drop ZKF and Drag and Drop 0CALDAY and then Right Clcik and Restrict-->
    Selection = Value Range. (In Between) and restrict with the follwoing Variables
    []YTD; ZCDAY.
    Then write the following code in I_STEP = 2.
    DATA: ZT_DT1 TYPE SY-DATUM,
              ZT_DT2 TYPE SY-DATUM,
              ZT_SDT TYPE SY-DATUM,
              ZT_YR(4) TYPE N,
              ZT_DY(2) TYPE N,
              ZT_MT(2) TYPE N,
              ZE_TT(2) TYPE N,
              ZPOPER TYPE POPER,
             ZRELJR TYPE RELJR.
    WHEN 'ZMTD_A'.
      LOOP AT i_t_var_range INTO loc_var_range WHERE vnam = 'ZCDAY'.
        IF sy-subrc = 0.
          CLEAR: l_s_range.
          ZT_DY = '01'.
          ZT_SDT = loc_var_range-low.
          ZT_MT = ZT_SDT+4(2).
          ZT_YR = ZT_SDT+0(4).
          CONCATENATE ZT_YR ZT_MT ZT_DY INTO ZT_DT1.
          l_s_range-low = ZT_DT1.
          l_s_range-sign = 'I'.
          l_s_range-opt = 'EQ'.
          APPEND l_s_range TO e_t_range.
        ENDIF.
      ENDLOOP.
    WHEN 'ZYTD'.
      LOOP AT i_t_var_range INTO loc_var_range WHERE vnam = 'ZCDAY'.
        IF sy-subrc = 0.
          CLEAR: l_s_range.
          ZT_DY = '01'.
          ZT_SDT = loc_var_range-low.
          CALL FUNCTION 'DATE_TO_PERIOD_CONVERT'
            EXPORTING
              I_DATE               = ZT_SDT
    *         I_MONMIT             = 00
              I_PERIV              = 'V3'
           IMPORTING
             E_BUPER              = zbuper
             E_GJAHR              = zbdatj
           EXCEPTIONS
             INPUT_FALSE          = 1
             T009_NOTFOUND        = 2
             T009B_NOTFOUND       = 3
             OTHERS               = 4
          IF SY-SUBRC <> 0.
             MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
          CALL FUNCTION 'FIRST_AND_LAST_DAY_IN_YEAR_GET'
            EXPORTING
              I_GJAHR              = zbdatj
              I_PERIV              = 'V3'
           IMPORTING
             E_FIRST_DAY          = ZT_DT2
    *         E_LAST_DAY           =
           EXCEPTIONS
             INPUT_FALSE          = 1
             T009_NOTFOUND        = 2
             T009B_NOTFOUND       = 3
             OTHERS               = 4
          IF SY-SUBRC <> 0.
             MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
          l_s_range-low = ZT_DT2.
          l_s_range-sign = 'I'.
          l_s_range-opt = 'EQ'.
          APPEND l_s_range TO e_t_range.
        ENDIF.
      ENDLOOP.
    Thanks
    Reddy

  • CURRENT YEAR SALES DATE PARAMATER AND PRIOR YEAR SAME DATE RANGE

    I am pulling data from a SQL view dbo.view that has current and historical SOP data by line.  The date paramater is a date range,  uppr date and lower date formulas are in the report.  I need to include prior year SOP data for the same prior year date range in the detail.  I have tried adding the view in twice with no luck, just duplications.  Ultimately I want to supress the detail and only show the totals by customer so it is comparitive.  Thanks for your help.  Jayne

    OK
    lets simplify it
    get a test data source with some simple dates in it.
    get the report logic working.
    it looks like you have the right formula ideas but lets go for
    @upperthisyear
    @upperlastyear
    @lowerthisyear
    @lowerlastyear
    then assuming a date field of {table1.date}
    the record selection would be
    if (@upperthisyeare > {table1.date} and @lowerthisyear < {table1.date}) or (@upperlastyeare > {table1.date} and @lowerlastyear < {table1.date}) then 1 else 0
    I would test this by using it as a formula field with the test data.

  • How to calculate Prior Year To Date in SSRS

    Hi,
    I've been developing reports in Crystal for a while. The new ERP software we have just purchased uses SSRS for all of their reports. I just started converting the crystal reports to SSRS. I can't seem to find an easy way to do a calculation for Prior Year
    to Date or Prior Year Month to Date in SSRS. Can somebody help me?
    Thanks,
    Cindy

    Your best bet would be to use a calendar table in the TSQL queries. I wrote an article on them here: http://social.technet.microsoft.com/wiki/contents/articles/29260.tsql-calendar-functions-and-tables.aspx
    Alternatively you can use a formula like:
    =DateValue(DATEADD(DateInterval.Day,1-DATEPART(DateInterval.DayOfYear,NOW()),Now()))
    Don't forget to mark helpful posts, and answers. It helps others to find relevant posts to the same question.

  • Calculating HTD(Half Year to date) in Essbase

    Hi All,
    Is there any way in essbase where in you can calculate HTD(half year to date) Values.
    I know in essbase we have Dynamic time series where in you can calculate YTD,HTD(History to date),MTD,QTD,...etc.
    can you guys have any thoughts on as how HTD(half year to date) is achievable in essbase.
    thanks in advance.

    Can you modify your time dimension to look like
    Time
    -1st Half
    ---Qtr1
    ------Jan
    ------Feb
    ------Mar
    ---Qtr2
    ------Apr
    ------May
    ------Jun
    -2nd Half
    ---Qtr3
    ------Jul
    ------Aug
    ------Sep
    ---Qtr4
    ------Oct
    ------Nov
    ------Dec
    If so, you could enable a dts member and set the alias to be hf-t-d
    if you can't add those members, condider adding a dynamic calc member with a formula
    psudo logic would be
    If it is a descendant of Q1 or Q2 then sum Jan to the current month else if it is a descendant of q3 or 4 sum jul to the current month

  • Monthtodate showing year to date totals

    I have document all designed with crosstab, all i want it month to date totals and year to date totals.  i have use existing formulas and the yeartodate one works, however, the monthtodate is displaying year to date totals on the report.
    Can someone please help?  I am farily new to Crystal.

    Thank you for responding Ian.
    I am confused now, how will I get the Call types across the top if i don't use a cross tab?
                        Hardware              Software             Merchandise                 HR                
    1                   MTD                        MTD                         MTD                           MTD
                         YTD                        YTD                         YTD                           YTD
    2                   MTD                        MTD                         MTD                           MTD
                         YTD                        YTD                         YTD                           YTD
    3                   MTD                        MTD                         MTD                           MTD
                         YTD                        YTD                         YTD                           YTD
    4                   MTD                        MTD                         MTD                           MTD
                         YTD                        YTD                         YTD                           YTD
    This is what i have, but the MTD total is the same as the YTD total.
    Or am i way off base?
    Nita Kay

  • Year-to-Date using mdx

    Hi,
    I am new to mdx and struggling with the syntax.
    I have made the below (simple) query wich works fine.
    select {(EJV1, Dec, [RUBRIEK 5] )} on Columns,
    Descendants([109]) on rows
    From Resultat
    where (FY10, Prognose, [geen klant], [Geen omzet])
    Now i would like to have a year to date value.
    When i use the query below i see all the separate months.
    How can I adjust this query so the period values are aggregated?
    select { (YTD([Dec]))} on Columns,
    Descendants([109]) on rows
    From Resultat
    where (FY10, Prognose, [geen klant], [Geen omzet])
    Thanks.

    We use a VALUE dimension to dynamically calculate YTD/QTD/Thousands/Millions...
    Our ASO database has P&L and B/S data so this YTD Member Formula handles them differently:
    IIF(IsLevel([TIME].Currentmember, 0),
         IIF(IsAncestor([Balance_Sheet_Accounts ], [ACCOUNTS].Dimension.CurrentMember),
              [TIME].CurrentMember,
         Sum(PeriodsToDate ([TIME].Generations(2), [TIME].Currentmember))
    0
    This lets us query with Excel as if we had the Dynamic Time Series functionality of BSO.
    Edited by: baboland on May 20, 2010 1:53 PM
    Edited by: baboland on May 20, 2010 1:54 PM

  • Year to date of epoch time

    I am doing a report where I would like to select records year to date. My difficulty is that the date field is in epoch time from 1/1/1990. What would be the formula for this record selection? I know I could use yeartodate and dateadd but am having trouble pinning it down. Thank you.

    EPOCH time starts from 01/01/1970 are you sure it is 01/01/1990?
    In your record selection criteria use:
    DateAdd ("s",{epoch.datefield}-18000, #1/1/1970#) in YearToDate
    This checks for Eastern Time, just add 3600 to 18000 for each hour that is behind Eastern Time Zone.

  • DATE formula bug

    Hello everyone,
    As i said in subject, I have a problem with a DATE formula. It's funny I think but it may be a little problem in the future. My date which should be ok is not. Year and month is ok but day is tricky because I have to put an expression after a DAY (-2). If I don't a date is 2 days later from the one that I want to make. If anybody can help me fix this I really appreciate that.
    Thanks in advance.
    Message was edited by: adpa15

    Is it so tiring to read carefully the available resources ?
    As you may see, Apple took time to give us the needed infos.
    Given what we may read in the forums, it seems that users are more often buggued than the applications themselves
    Yvan KOENIG (VALLAURIS, France) vendredi 19 mars 2010 19:28:43

  • BSI: Year-To-Date Method ?

    Dear all:
        Im trying to understand bulletin 57 and the change of formula for tax type 003 to "year to date method"... I saw the doc. of bsi about that and it is not very clear, any one could provide an example of what would be the impact? what would change?
    Thank you,

    Hi
    The difference in the methods is the way one translates flow accounts (typicall revenue and expense lines)
    using TRANS function will translate the YTD values and the difference between current period YTD and previous period YTD in translated currency will be written to periodic view
    using TRANSPERIODIC function, HFM will first calculate the periodic value in the entity currency and multiple this by the exchange rate for the period.
    typically if in the application setting you have clicked ON on the "USE PVA for flow accounts", that means you need to use transperiodic method.
    hope this helps

  • Last year to date

    afternoon all,
    I am so confuse with these year to date dates, what is the best practice if you want to get all the dates from last year upto today's date.
    For example, Today is 16/01/2009, so effectively the last year to date would be 16/01/2008 to 16/01/2009.
    I am thinking of using =Today-365
    or  =Currentdate-365
    or  =(dateserial('y',-1,)
    Perhaps you can give me some ideas?
    Regards
    Jehanzeb

    I forgot to ask another question. I am using the following formula under my Record Selection formula,
    Does this formula means from Last year to date?
    ({lab_rework.rework_date} in date(year(currentdate),1,1) to
    dateserial(year(currentdate), month(currentdate)+1,1)-1
    Sorry but I am so confused with these date formulas.
    The purpose is to get last year to date records, that is 16/01/2008 to 16/01/2009 where 16 is currentdate.
    Regards
    Jehanzeb

  • Need template with daily entries, & monthly sums & year-to-date sums

    I'm trying to find a budget template for Numbers -- adapted from the checkbook template, maybe? --
    where one can enter daily transactions (with category) in 12 different monthly tables, show each month's category sums in tables next to the daily ones,
    and also have a table for Year-to-Date category sums, probably at the top of the whole thing.
    In other words, each individual transaction would have to be added to its monthly category table, AND to the Year-to-Date category table.
    Has anyone done this?  Can it be done in Numbers?
    Thanks.

    Hi Jackie,
    That makes more sense than my original reading. The function you are looking for is "SUMIFS."
    Here's an example, with the transactions recorded in the "Data" table, and the January sums reported in the "Summary" table.
    "Data" contains no formulas.
    On "Summary":
    A1 contains the start date, Jan 1, 2012.
    The rest of column A contains the category names, which must exactly match the names used in the Data table.
    B2 contains the formula, which is filled down the rest of column B:
    Summary::B2: =SUMIFS(Data::$C,Data::$B,"="&A,Data::A,">="&$A$1,Data::$A,"<="&EOMONTH($A$1,0) )
    For an amount to be included in the SUM, three conditions must be met:
    -- The transaction category must match the category in that row of Summary.
    -- The transaction date must be on or after the date in A1 of Summary
    -- The transaction date must be on or before the last day of the month in A1 of Summary.
    Regards,
    Barry

Maybe you are looking for

  • Oracle Open interface- Error in Item Import (INCOIN)

    Hi, I am migrating items to oracle using oracle open interface. I am getting the follwing errors. 1. The TEMPLATE_ID or TEMPLATE_NAME specified is not valid for this Organization 2. The revision entered is for an item that does not exist in MTL_SYSTE

  • Airport no longer working only on a single mbp on a single home-network

    Hello fellows Been recently foghting with this strnge,unreported issue, The macbook pro is a 13" mid 2012 series. The network router is a D-Link XXXXXXXXXXXX with DSL flat line. All the other machines in there are just working FINE (1 15"2009 mbpro,

  • Upgrade video card HP touchSmart 600 PC - 1350

    My PC is TouchSmart 600 - 1350. It's dedicated video memory is just 64 MB. I want to upgrade to 1 GB. What video card that fit my mainboard I should buy? (I want a cheap one). And how can I upgrade myselt?

  • How to append to the previous line in a text?

    Hi, Can we append a previous line in a text? That is, my program goes to the next line of text in one loop but I need to go back to the previous line and append to it in the next loop. How can I do that? Is there a way to go to a specific line or pre

  • DSL/ Col Adj/ B&W section missing in Develop module

    Hi there, I'm probably being an idiot here (usually the case) but I seem to have lost the DSL/ Col Adj/ B&W section down the right hand side in the develop module. Running top to bottom I have: Basic Tone Curve Split Toning Detail Lens Corrections Ef