Adding multiple rows to a cell?

Is it possible to add multiple rows of text to a single cell? I am trying to create a workout log. Typicaly I would record several exercises with weights and repititions to a single days workout. Is this possible in Numbers?
Suggestion?
Thanks.

Hi Dcneuro,
I am trying to create a workout log. Typicaly I would record several exercises with weights and repititions to a single days workout.
You can enter multiple lines of text in a cell... But I'm wondering why you would want to do that. A log would be more useful if you structure it like this, one exercise to a row and repeat the date where appropriate:
If you structure it that way or similarly (rather than entering multiple lines in a cell) then you can then use Numbers to do the things spreadsheet software is designed to do: derive summary statistics, charts, etc.  The formulas in this summary table are:
B2, copied down:  =COUNTIF(Log::B,A2)
C2, copied down: =SUMIF(Log::B,A2,Log::D)
D2, copied down: =AVERAGEIF(Log::B,A2,Log::D)
E2, copied down: =AVERAGEIF(Log::B,A2,Log::C)
Obviously these workout numbers make no sense. This is just a simple example to give you an idea of the kinds of things you can do if you structure your log properly.
Also, have a look at the Running Log template (File>New>Personal>Running Log on the Mac, or on the iPad: + then Create Spreadsheet then scroll down to the Personal section).
SG

Similar Messages

  • Adding multiple rows

    How do I add multiple rows at once? Thanks,
    Owen

    See page 69 of the English edition of the user guide for the basics. If you've already been there and read that, you may be saying; yes, but I want to add them in the middle of my table. That's an extension of adding rows to the end of the table. Add as many rows as you need, at the end of the table. Then select the new rows by click-dragging across the row labels. Then grab the selection by one of the labels and pull to the left to separate the new rows from the rest of the table. Without letting go, move the cursor up the table to where you want the new rows to reside, just to the right of the labels, and you will notice that insertion marks, a split line, appear along the row borders under the mouse. When you reach the destination, let go of the mouse switch and the blanks will drop in where you want them.
    Jerry

  • Adding multiple rows or columns to a sheet

    Hi There,
    I'm new to this so pardon me please.......I've tried everything, I've looked everywhere..........does anyone know how to add in multiple rows or columns into the middle of a worksheet? There has to be a quicker way to throw in a quick 20 rows rather than just doing it one by one?????
    Frustratingly yours
    Morris

    Hello
    It seems that you missed a detail:
    +1. Highlight the number of columns you want to add before or after your insertion point.+
    +_2. Control click to get menu._+
    +3. Select "Add Columns Before" or "Add columns After" - whichever is appropriate.+
    without Control
    with Control depressed
    Yvan KOENIG (from FRANCE mercredi 6 février 2008 15:50:47)

  • Adding multiple rows to the HtmlDataTable in bean.

    Hi,
    I am facing a problem in displaying the table data which I am constructing in my Bean using HtmlDataTable.
    I am constructing a HtmlDataTable and binding it to a <h:dataTable>. As per the requirement, I need to display the data in different
    rows of the table. My table has a single column.
    in my JSP, I have
    <h:dataTable id="doclist" value="#{empobject.docListTable}" binding="#{empobject.docListTable}" />
    in my java bean, I have
    <code>
         public HtmlDataTable getDocListTable() {
         FacesContext facesContext = FacesContext.getCurrentInstance();
         docListTable=(HtmlDataTable) facesContext.getApplication().createComponent(HtmlDataTable.COMPONENT_TYPE);
         docListTable.setRows(10);
         <i> // Column1 </i>
         UIColumn columnComponent1 = new UIColumn();
         List childrenList = docListTable.getChildren();
              <i> //Column is added.</I>
         childrenList.add(columnComponent1);
              <i>//Adding the header info for the column</i>
              columnComponent1.setHeader(new HtmlOutputText().setValue("Header"));
         // DataModel
         ListDataModel listDataModel = new ListDataModel();
         ArrayList list =(ArrayList)columnComponent1.getChildren();
         <i>FIRST ROW </i>
         HtmlOutputText rowComponent = new HtmlOutputText();
         rowComponent.setValue("Training ");
         rowComponent.setId("Row1");
         rowComponent.setStyleClass("Section");
         list.add(rowComponent);
         <i>SECOND ROW </i>
         HtmlOutputText rowComponent1 = new HtmlOutputText();
         rowComponent1.setValue("OPeration");
         rowComponent1.setId("Row11");
         rowComponent1.setStyleClass("Section");
         list.add(rowComponent1);
         listDataModel .setWrappedData(list);
         // docListTable.setValue(listDataModel);
              return docListTable;
    </code>
         Here I am assuming that 2 rows were added to the table. But what's happening is
    1) Table header is added properly.
    2) Insteadof having 2 table rows, within a single row, both outputtext values displayed. (i.e Training OPeration)
    As I am pretty new to JSF world, I am requesting experts to give me solution as to display the information in two rows.
    In real, my requirement is so complex as I will have to display the <td> in different styles and all depending upon some conditions.
    But, this above mentioned problem has become a major hurdle to proceed further. As somany complexities involved, I wanted to construct this
    table in my java bean only.
    Please help me out in adding some sample code while giving a solution.
    Thanks,
    -Nir

    Hi,
    I am facing a problem in displaying the table data which I am constructing in my Bean using HtmlDataTable.
    I am constructing a HtmlDataTable and binding it to a <h:dataTable>. As per the requirement, I need to display the data in different
    rows of the table. My table has a single column.
    in my JSP, I have
    <h:dataTable id="doclist" value="#{empobject.docListTable}" binding="#{empobject.docListTable}" />
    in my java bean, I have
    <code>
         public HtmlDataTable getDocListTable() {
         FacesContext facesContext = FacesContext.getCurrentInstance();
         docListTable=(HtmlDataTable) facesContext.getApplication().createComponent(HtmlDataTable.COMPONENT_TYPE);
         docListTable.setRows(10);
         <i> // Column1 </i>
         UIColumn columnComponent1 = new UIColumn();
         List childrenList = docListTable.getChildren();
              <i> //Column is added.</I>
         childrenList.add(columnComponent1);
              <i>//Adding the header info for the column</i>
              columnComponent1.setHeader(new HtmlOutputText().setValue("Header"));
         // DataModel
         ListDataModel listDataModel = new ListDataModel();
         ArrayList list =(ArrayList)columnComponent1.getChildren();
         <i>FIRST ROW </i>
         HtmlOutputText rowComponent = new HtmlOutputText();
         rowComponent.setValue("Training ");
         rowComponent.setId("Row1");
         rowComponent.setStyleClass("Section");
         list.add(rowComponent);
         <i>SECOND ROW </i>
         HtmlOutputText rowComponent1 = new HtmlOutputText();
         rowComponent1.setValue("OPeration");
         rowComponent1.setId("Row11");
         rowComponent1.setStyleClass("Section");
         list.add(rowComponent1);
         listDataModel .setWrappedData(list);
         // docListTable.setValue(listDataModel);
              return docListTable;
    </code>
         Here I am assuming that 2 rows were added to the table. But what's happening is
    1) Table header is added properly.
    2) Insteadof having 2 table rows, within a single row, both outputtext values displayed. (i.e Training OPeration)
    As I am pretty new to JSF world, I am requesting experts to give me solution as to display the information in two rows.
    In real, my requirement is so complex as I will have to display the <td> in different styles and all depending upon some conditions.
    But, this above mentioned problem has become a major hurdle to proceed further. As somany complexities involved, I wanted to construct this
    table in my java bean only.
    Please help me out in adding some sample code while giving a solution.
    Thanks,
    -Nir

  • ALV multiple rows in single cell....

    Hi Experts,
    I am using ALV report, it is more than 132 coloms. I want to display balance columns on second line of same row.
    For e.g. :
    Sr.No.  O.A. No.
               Invoice No.
    1        12345
                 00001
    2       124567
                000002
    it is possible ?
    YAB
    Message was edited by:
            YUSUF BHORI

    Hi
    I think it is not possible in ALV reports.
    Simple ALV report
    http://www.sapgenie.com/abap/controls/alvgrid.htm
    http://wiki.ittoolbox.com/index.php/Code:Ultimate_ALV_table_toolbox
    ALV
    1. Please give me general info on ALV.
    http://www.sapfans.com/forums/viewtopic.php?t=58286
    http://www.sapfans.com/forums/viewtopic.php?t=76490
    http://www.sapfans.com/forums/viewtopic.php?t=20591
    http://www.sapfans.com/forums/viewtopic.php?t=66305 - this one discusses which way should you use - ABAP Objects calls or simple function modules.
    2. How do I program double click in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=11601
    http://www.sapfans.com/forums/viewtopic.php?t=23010
    3. How do I add subtotals (I have problem to add them)...
    http://www.sapfans.com/forums/viewtopic.php?t=20386
    http://www.sapfans.com/forums/viewtopic.php?t=85191
    http://www.sapfans.com/forums/viewtopic.php?t=88401
    http://www.sapfans.com/forums/viewtopic.php?t=17335
    4. How to add list heading like top-of-page in ABAP lists?
    http://www.sapfans.com/forums/viewtopic.php?t=58775
    http://www.sapfans.com/forums/viewtopic.php?t=60550
    http://www.sapfans.com/forums/viewtopic.php?t=16629
    5. How to print page number / total number of pages X/XX in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=29597 (no direct solution)
    6. ALV printing problems. The favourite is: The first page shows the number of records selected but I don't need this.
    http://www.sapfans.com/forums/viewtopic.php?t=64320
    http://www.sapfans.com/forums/viewtopic.php?t=44477
    7. How can I set the cell color in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=52107
    8. How do I print a logo/graphics in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=81149
    http://www.sapfans.com/forums/viewtopic.php?t=35498
    http://www.sapfans.com/forums/viewtopic.php?t=5013
    9. How do I create and use input-enabled fields in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=84933
    http://www.sapfans.com/forums/viewtopic.php?t=69878
    10. How can I use ALV for reports that are going to be run in background?
    http://www.sapfans.com/forums/viewtopic.php?t=83243
    http://www.sapfans.com/forums/viewtopic.php?t=19224
    11. How can I display an icon in ALV? (Common requirement is traffic light icon).
    http://www.sapfans.com/forums/viewtopic.php?t=79424
    http://www.sapfans.com/forums/viewtopic.php?t=24512
    12. How can I display a checkbox in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=88376
    http://www.sapfans.com/forums/viewtopic.php?t=40968
    http://www.sapfans.com/forums/viewtopic.php?t=6919
    13. Top-of-page in ALV
    selection-screen and top-of-page in ALV
    14.  ALV Group Heading
    http://www.sap-img.com/fu037.htm
    How to add list heading like top-of-page in ABAP lists?
    http://www.sapfans.com/forums/viewtopic.php?t=58775
    http://www.sapfans.com/forums/viewtopic.php?t=60550
    http://www.sapfans.com/forums/viewtopic.php?t=16629
    Go thru these programs they may help u to try on some hands on
    ALV Demo program
    BCALV_DEMO_HTML
    BCALV_FULLSCREEN_DEMO ALV Demo: Fullscreen Mode
    BCALV_FULLSCREEN_DEMO_CLASSIC ALV demo: Fullscreen mode
    BCALV_GRID_DEMO Simple ALV Control Call Demo Program
    BCALV_TREE_DEMO Demo for ALV tree control
    BCALV_TREE_SIMPLE_DEMO
    BC_ALV_DEMO_HTML_D0100
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Adding multiple row editor to TreeCellEditor

    Hey all,
    I need to have a text field, check box and a combo box all as part of an inline editor for a tree node. When the user hits NEW to insert a new tree node, or edit an existing one, I want the editor to appear with two rows. The top row is the text field and check box. The second row is the combo box.
    Is this possible? I just tried it and I see my combo box appear, but it appears the height of the editing area is fixed, so only my combo box shows up and the text field is no longer visible?
    Here is my code:
    public class AdminTreeCellEditor extends DefaultTreeCellEditor
      private final JCheckBox activeBox = new JCheckBox("Active");
      private final JComboBox revenueCategoryBox = new JComboBox();
      private final JLabel iconLabel = new JLabel();
      private final JPanel editorPanel = new JPanel(new BorderLayout());
      private Icon editIcon = null;
      public AdminTreeCellEditor(JTree tree)
        super(tree, (DefaultTreeCellRenderer) tree.getCellRenderer());
        editorPanel.add(activeBox, BorderLayout.EAST);
        editorPanel.setOpaque(false);
        activeBox.setOpaque(false);
        editIcon = new ImageIcon(getClass().getResource("/edit.gif"));
      public Component getTreeCellEditorComponent(JTree tree, Object value, boolean isSelected, boolean expanded, boolean leaf, int row)
        Component c = super.getTreeCellEditorComponent(tree, value, isSelected, expanded, leaf, row);
              SortableTreeNode dmtn = (SortableTreeNode)value;
        if (dmtn.getUserObject() instanceof CorporateItem)
          CorporateItem ci = (CorporateItem)dmtn.getUserObject();
          activeBox.setSelected(ci.isActive());
        else
          activeBox.setSelected(true);
        editorPanel.add(c, BorderLayout.WEST);
        if (dmtn.getUserObject() instanceof CorporateSpecial)
          editorPanel.add(revenueCategoryBox, BorderLayout.SOUTH);
        JTextField jtf = (JTextField)editingComponent;
        jtf.setSelectionStart(0);
        jtf.setSelectionEnd(jtf.getText().length());
        jtf.requestFocus();
        // set icon to renderers icon
        editingIcon = editIcon;
        return editorPanel;
      public boolean isCellEditable(EventObject event)
        boolean retValue = super.isCellEditable(event);
        if (retValue)
          SortableTreeNode dmtn = (SortableTreeNode) tree.getSelectionPath().getLastPathComponent();
          if (dmtn.getUserObject() instanceof LowItem)
            retValue = false;
      return retValue;
    }In the above, if the user object is a CorporateSpecial, I add the combo box to the editor panel. So, it seems to work, accept that the height of the tree node editing area doesn't expand enough to show two rows of items. Is there some call I need to make on the tree for the editing path to set it's height? Can this be done? I am trying to avoid doing a pop-up dialog for editing... I like the idea of the inline node editing.
    Thanks.

    Got that. Turns out that you have to set the Tree.setRowHeight(0) in order to avoid using a fixed cell height. It uses the cell renderer (or editor) to figure out the preferred size of the cell. Problem is, even though I did this, it appears I still have to set the row height in the getTreeCellEditorComponent() method directly, as the one time setting on the tree seems to get overridden somehow. Not sure how. Anyway, it does work. I have a two row editor showing up now, which is very slick! Inline expansion to show a 2 row editor, then when done it goes away. Nice.

  • Adding multiple rows to the view

    Hi guys,
    I have a table (PlannerTab)to which a view (PlannerVO)is attached the table has a add new row button and at the page level i have a save button which will commit the database.
    The user clicks the add new row button and enters values for the columns
    when he clicks save i need to default someother view attributes based on the values he has entered .. for example if he has entered employeename i need to get the employee id from the db and populate my view object attribute(employeeid).... how do i handle this esp when the user creates more than 1 row before he commits the database.
    Thanks in advance ......
    Tom

    Tom,
    How is user entering the employee name? Is it a normal text input field? Then what will happen if the entered name is wrong. I will suggest to use an LOV for field like that so that when you select the name, the corresponding Id will also get stored on page context if you configure properly.
    Otherwise if you are not bothered about the validated data, you can put the logic to get the Id from name while saving logic.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Essbase 7.1.6 - filter maxl script commands -adding multiple rows to filter

    how do i add multiple lines to a maxl scrpt for a filter update -
    "HIST_FCST","1_2011":"12_2011";
    "FORECAST","1_2011":"12_2011";
    i tried these two lines, but the 2nd overlays the first.
    Create or replace filter capmgt11.capmgt11.lockflt2 read on '"HIST_FCST","1_2011":"6_2011"';
    Create or replace filter capmgt11.capmgt11.lockflt2 read on '"FORECAST","1_2011":"6_2011"' ;
    also tried to separate by a comma, but doesn't work - syntax error 1242021 - and doesn't like the 2nd set of parameters?
    thanks - kt543.

    Did you happen to look at the technical reference?
    http://download.oracle.com/docs/cd/E17236_01/epm.1112/esb_tech_ref/maxl_crefilt.html
    The first example shows you how to do it
    create filter sample.basic.filt1 read on 'Jan, sales', no_access on '@CHILDREN(Qtr2)';
    Edited by: GlennS_3 on May 19, 2011 12:09 PM

  • Unable to copy the sql data in excel multiple rows

    Hi friends,
    when i am paste the sql table data in excel,it's not adding multiple rows,it's addingsingle row.,
    i want to paste data in to multiple rows

    So you have a table that contains some text and you want to copy the text to Excel sheet.I would use Ssis package and try edit the excel sheet to multiple text allowance.
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Adding and Deleting Multiple Rows or Columns

    How do you add or delete more than one row or column at a time.

    Robby! wrote:
    That's a great finding!
    I just wrote a feedback requesting a shortcut like this.
    It is a pity though that they desing it to work only if you select the header of the row/column. It should be enabled to work from within any cell in the table.
    Who wrote such an error ?
    These interesting shortcuts behave flawlessly even if the cursor was in D18 for instance.
    (a) I never saw them in the delivered resources.
    (b) they aren't responding to the OP's question which was about "Adding and Deleting Multiple Rows and Columns"
    Yvan KOENIG (from FRANCE vendredi 3 octobre 2008 18:39:01)

  • Populate multiple rows and columns based off of a single cell

    Does anyone know a way to populate multiple rows and columns based off of the input of a single cell. I'm trying to create a workout tracker that auto populates from a master list of workouts. Example, in A2 the user selects the workout from a drop down menu (St1, St2, St3, etc) and the workout is pulled from the master list and is populated into B2:C5.
    I'm using =LOOKUP(A2,Master :: A2:A32,Master :: C2:C32) right now, but it's only drawing the top column. I'm looking for an edit for the formula (or completely new formula) that will place the info from the 1st column of the Master table into the 1st column of the Auto Tracker 1 table and then on down until the 4th column.
    Here is a screen shot of what I have now:
    And an example of what I'd like to accomplish:
    Any and all help is appreciated, and please let me know if there is any more info that I can give that'd help out.

    Hi Mike,
    Your screenshots show that you have merged some cells in Column A of both tables. That may be the reason why the LOOKUP function is having trouble working out which range of cells to examine.
    Hope this helps.
    Regards,
    Ian.

  • How to read and write data in to a specified range of cells(it include multiple row & columns) in excel

    How to read and write data in to a specified range of cells(it include multiple row & columns) in excel

    CVI Comes with a sample project that explains how to read/write to a Excel file: choose "Explore examples..." in CVI welcome page and navigate to <cviSampleDir>\activex\excel folder where you can load excel2000dem.prj.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Adding a Multiple Rows Without Clearing Previous Row Details

    Dear All,
    I want to Add multiple rows at the same time in a matrix at the same time .My problem here is When i add the New rows to the matrix already added data need to remail in the matrix , I cant put Matrix.Clear or Datasource.clear.
    When   i add multiple rows previous row details is duplicated to next rows how to avoid thus
    Mohamed

    Hi,
    try this,
    If (pVal.ItemUID = "BTNUID") And (pVal.EventType = SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED) Then
                            Dim fr As SAPbouiCOM.Form
                            Dim sel As Integer
                            Dim oMatrix1 As SAPbouiCOM.Matrix
                            fr = SBO_Application.Forms.Item(FormUID)
                            oMatrix1 = fr.Items.Item("mtx_136").Specific
                            fr.DataSources.DBDataSources.Item(2).Clear()
                            sel = oMatrix1.GetNextSelectedRow
                            oMatrix1.AddRow(1, sel)
                        End If
    "mtx_136" is your matrix ID
    and "BTNUID" is your button ID

  • Adding up Downloads excessively due to multiple rows in Tabular

    Hi All ,
    We have fact table table which has data for Products that are taken down from the  App Store ,due to different reasons like App has risky key words , App has adult content etc  ...  We get the data from the staging table as below 
    As the "reasonForTakeDown" column is having comma separated string , now we need to split this reason in to multiple rows taking Comma as the delimiter. So the first ,second and Third ProductGUIDs  have to repeated multiple
    times to each "reasonForTakeDown" as shown below 
    So in the above example if get the sum(Downloads) for the productKey 1 , then value is 300 where as the Staging value is 100.Same as with the productKey 2 , Sum(Downloads) from the fact table is 150 where as the Staging value is 50 and same case with ProductKey
    3 as well . Downloads and Revenue numbers are getting inflated due to multiple rows 
    I have a Tabular basing on the above fact table and having measures as "Downloads" and "Revenue" which are set to aggregation type as "SUM".  For the products like 1,2 and 3 we are
    getting inflated numbers from cube when compared to Staging table due to the column ReasonForRemovalkey.
    Now the problem is avoid the excess counting of downloads and Revenue by keeping multiple rows in fact table to satisfy reasonForRemovalKey Scenario . Can you help me out in writing an DAX so that anytime i will get the
    correct number of downloads and revenue which are matching with staging table.
    Approaches tried:
    1)  Tried changing the aggregation type from SUM to Avg , but this aggregation type would give avg of downloads when the user selects multiple products. Suppose if the user selects ProductKey 1 & 2  then Avg downloads measure would be (100+100+100+50+50+50)
    / 6  = 75 , where as the original downloads sum is  100+50  = 150 .So Avg aggregation wont work for me.
    2) I cannot divide the value of  downloads/NetRevenue for a product with the count of rows for that product in fact table.So that Sum(Downloads) and Sum(NetRevenue) would give me correct values.I cannot do this because , if want to get the downloads
    for a TCR and a product then i would download measure share of that TCR but not the total downloads.
    Hope i explained my scenario well. Thanks in advance

    Spliting the message as it supports only two images per message .
    Contd : 
    Now the scenarios that needs to satisfied as below :
    If user selects a product then we should get only the latest download and revenue out of the above multiple rows for a product from the tabular cube .i.e. as shown in the below snip  
    Suppose if the user selects any other column instead of Product from the tabular cube , suppose if the user selects a date as a dimension on the row labels and Downloads ,Revenue as the measure from the Tabular cube , then it should only the max downloads
    and Revenue for a product. i.e 
    Now the same case as date with Requester also .If user selects requester then we should count only the downloads and revenue only once i.e. is the max downloads and revenue for a product and a requestor as shown in the below table  
    RequestorKey Downloads Revenue 
    1                    100             50
    2                    150             40
    3                    105             55
    Hope i explained now clearly the scenarios.Thanks  you once again for your time 

  • Cell value spanning multiple rows in JTable

    Hi,
    I have a JTable where I want a single column value alone to span multiple rows.
    Something like
    Course No. | Location | Cost
    | loc1 | 1000
    1 ---------------------------------------------
    | loc2 | 2000
    How can I create a JTable like this?
    Thanks for the help.

    I have a link for that,
    http://www2.gol.com/users/tame/
    go in swing examples, JTable #4.
    Hope it helps :)

Maybe you are looking for

  • InDesign CS4 Mac starts but then freezes

    Indesign CS4 Mac starts up but freezes from there. Trying to open files or create new ones results in the filename appearing at the bottom of the Window drop-down menu, but the file doesnt appear on-screen. The same result occurs when opening files u

  • Where is the Oracle WSRP producer?

    Hi, I am looking for the Oracle WSRP producer located at http://portalstandards.oracle.com/wsrp/jaxrpc?WSDL before. But the URL does not exist now. Could anybody let me know the producer? In fact I saw those remote portlets on http://portalstandards.

  • How to use dictation?

    How do you use dictation. Should it automatically start laying text in a document? Textedit or Word ?

  • Icloud calendar updating incorrectly

    I am having an issue with my iCloud calendar.  It appears that all of my repeating appointments, which have been entered on iCal and downloaded to my iPhone4 (6.01), are not importing into the iCloud calendar.  I just turned on iCloud a few days ago

  • VAT availment on Capital Goods

    Hi friends, I have a requirement in VAT.  As we do in Excise capital goods purchase, 50% availment in the current year and balance to be availed in the coming year, the same process has to be adopted for VAT credit availment for capital goods.  Is it