Normal text and single column order issue

I have a long document text for a textbook, some paragraph I need to use two column (single column), but  the order wrongly changes between text and footnote.
Footnote should be in the end of the page.

Check the scripts by Peter Kahrel and see if one of them applies to your case: http://www.kahrel.plus.com/indesign/footnotes.html

Similar Messages

  • Column Ordering Issue

    Trying to find a solution to a problem I'm having in SharePoint 2010 Foundation, we have a list library used for storing drawings and when displaying the content of the library I want the results to be ordered by the Drawing Number column which sounds easy
    enough, but the drawing numbers mostly use the format 000/00/0/000 and so because of the / the column type is a "single line of text" which doesn't order the same way as a Number type column would, ie it will put 000/00/00/100 above 000/00/00/11.
    So I can think of two solutions to this;
    1, Make SharePoint order Text columns the same as a Number column or
    2, Use a calculated column and remove the /  and return as a Number column
    The only thing is I have no idea how to do either of these!!
    Can anyone please help?
    Thanks

    Hi Dermot,
    According to your description, my understanding is that you want to order documents by the Drawing Number column(string) like number column.
    For your issue, you can try to use workflow to do it. You can try to use workflow Utility actions to extract these chars before or after the / to four workflow variables(000 00 00 100), then convert these four variables into number, and calculate
    these. Finnally, store the calculated result to a number column and order documents by the number column.
    More information, please refer to the links:
    https://support.office.com/en-US/Article/Workflow-actions-in-SharePoint-Designer-2010-A-quick-reference-guide-5a7ad276-0ed7-49b0-b652-e56a77dd96c6?ui=en-US&rs=en-US&ad=US
    http://www.documentmanagementworkflowinfo.com/sample-sharepoint-workflows/convert-string-workflow-variable-to-number-sharepoint-designer-2010.htm
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Unique row based on two columns and single column

    Dear Members,
    I have a table which contains duplicate rows, for which a query should be able to fetch the unique row from the table. Here the unique is not based on one column, but it should be on two columns and also check for uniqueness on one column.
    create table addr ( firstname varchar2(10), lastname varchar2(10), area varchar2(3));
    insert into addr values('bob', 'james', '1');
    insert into addr values('bob', 'james', '1');
    insert into addr values('harry', 'bert', '1');
    insert into addr values('jimmy', 'bert', '1');
    insert into addr values('sam', 'mac', '1');
    insert into addr values('sam', 'knight', '1');
    insert into addr values('tom', 'sand', '1');
    insert into addr values('cat', 'mud', '1');
    The output of query should contain 3 rows.
    bob - james
    harry - bert or jimmy - bert [ either one of them, but not both ]
    sam - mac or sam - knight [ either one of them, but not both ]
    tom - sand
    cat - mud
    SELECT firstname, lastname as total from addr WHERE area = '1' GROUP by firstname,lastname; This does not take of single column duplication..
    Any suggestions..

    SQL> with t_data
    as
    select 'bob' as firstname, 'james' as lastname, '1' as area from dual union all
    select 'bob', 'james', '1' from dual union all
    select 'harry', 'bert', '1' from dual union all
    select 'jimmy', 'bert', '1' from dual union all
    select 'sam', 'mac', '1' from dual union all
    select 'sam', 'knight', '1' from dual union all
    select 'tom', 'sand', '1' from dual union all
    select 'cat', 'mud', '1' from dual
    SELECT
            firstname,
            lastname,
            area
    FROM
                    SELECT
                            t.*,
                            row_number() over(partition BY firstname order by 1) rn,
                            row_number() over(partition BY lastname order by 1) rn1
                    FROM
                            t_data t
    WHERE
            rn     = 1
    AND rn1 =1 ; 
    FIRSTNAME       LASTNAME        AREA
    bob             james           1
    cat             mud             1
    jimmy           bert            1
    sam             knight          1
    tom             sand            1
    SQL>

  • Mail, Exchange, Acitve Directory and Single-Sign On Issues

    I have a brand new MacBook Air with Mavericks. 10.9.3.
    We are using a single sign on account setup for our machines. I enter my exchange log in details to access my account on my computer. It's labeled as a managed mobile account. When I open Mail, it takes forever to connect with the exchange server and download and sync new email. The activity monitor shows it constantly running. I send an email and it takes minutes until it actually sends. When I try to shut down mail I usually have to force quit it to close the app because it's doing some kind of syncing with the server.
    I have all the same settings on a Mac Mini running 10.9.3 except I'm using a local user/admin sign-on. No issue there. So I think it's something with the single sign on on my Air. Any help would be appreciated!

    Try a restart.
    Do a backup, using either Time Machine or a cloning program, to ensure files/data can be recovered. Two backups are better than one.
    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    If the problem is still there, try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About
    General information.
    Isolating issues in Mac OS X
    Step by Step to Fix Your Mac
    You also have 90 day telephone support from Apple Support.
    Apple Support Contact
    Apple Support contact - Telephone

  • AdvancedDatagrid and Grouped Columns scroller issue.

    Dear Friends,
    I have one issue. when use the AdvancedDataGridColumnGroup in AdvancedDataGrid.
    Description:
    In the AdvancedDataGridColumnGroup created renderer with (+/-) icon. when clicking the icon hide/show the columns in the group column. function code
    * This function shows/hides the child columns
    * @param event:MouseEvent
    private function showHideColumn(event:MouseEvent):void
    try
    var index:int;
    for (index=1; index < this._columnGroup.children.length; index++)
    if (this._columnGroup.children[index])
    this._columnGroup.children[index].visible=this._hideFlag;
    imgShowHideColumn.source=this._hideFlag ? collapseColumn : expandColumn;
    this._hideFlag=!this._hideFlag;
    catch (err:Error)
    Alert.show(err.message + "\n" + err.getStackTrace());
    I have 25 columns, but only 8 columns visible, other hidden with the scrollbar. when click the (+/-) icon in the group column to hide/show the child columns then throws error in the AdvancedDataGridBaseEx.as:983.
    I think this issue is because of invisible columns. if i removed invisible columns and click (+/-) then it work well. hide the sub columns and show.
    can you give any suggestions for this issue.

    any help ????????? I found OLAPDataGrid .....   I was thinking to send all the data into a bidimensional Array , then pass the data of my bidimensionalArray to  OLAPDataGrid ...  but I'n not sure if Flex is able to do it  .... 
    the really serious problem is the special ROW I must use ...
    regards
    JS

  • Split column into multiple text and number columns

    I'm trying to figure out how to split this column into multiple columns with power query. One column for the company name/person name, one for the address, one for the zip.  Some of the addresses have a three or four digit code before the address, which
    I would like in its own column too.  It's the 170 on the lastname, firstname line.  Does anyone have any pointers on this? I'm familiar with PQ advanced editor, but struggling with this one.  
    COMPANY INC. 195 MAIN ST MYCITY ST 12345
    LASTNAME, FIRSTNAME 170 477 ANY STREET CIRCLE  MYCITY ST 12345
    Thanks for your help!

    HI Gil,
    We have column with more than one numbers separated by space or comma or semicolon.
    We need to add the row for each number by keeping all other column value same.
    Here is a original table
    Col1
    Col2
    Col3
    A
    B
    11 22,33 44; 55
    C
    D
    10    20
    and expected output should be
    Col1
    Col2
    Col3
    A
    B
    11
    A
    B
    22
    A
    B
    33
    A
    B
    44
    A
    B
    55
    C
    D
    10
    C
    D
    20
    Please let us know the best way to solve this...

  • Design a single template for multiple reports with different column order

    Hi,
    I need to migrate the existing reports from SQL Server Reporting Services to Crystal Report 2008, and the column order in the report is very important to the clients since clients have existing code to ingest these reports into their database. Now I want to create a single template with lot of parameters for all reports. My question is how I might use one template to create multiple reports with different column orders in the reports?
    For example, client A has the following column order in their report: firstName, LastName, DateBirth, SSN. Client B has the following column order in their report: SSN, DateBirth, LastName, FirstName. Can I use one template to create these multiple reports?
    Thanks in advance.

    -As I mentioned you can find Template Field object in Insert menu of crystal report Designer 2008.
    As soon as you select Template Field object you will be able to see a box beside ur mouse cursor. Drag and drop this box at required place. Now when you place this object in report you will get some thing like this "<TemplateField1>" listed under Formula Fields tree. Double click "<TemplateField1>" formula to add your conditions.
    -I have not tested it for large amount of Customers. However as the number of customer increases the number of conditions will get increased.
    For the customer that want the same ordering of columns you can put those customers under one condition.
        for Example...
              if(?Client in ['clientA','clientA']) then
                        <TableName>.<Field>......
    -What do you mean be 40 columns? Do you mean 40 fields or you want to show 40 columns in report? Please elaborate.
    Regards,
    Amrita
    Edited by: Amrita Singh on May 21, 2009 7:54 AM

  • Column order in the template

    I need to migrate the existing reports from SQL Server Reporting Services to Crystal Report 2008, and the column order in the report is very important to the clients since clients have existing code to ingest these reports into their database. Now I want to use a single template with a lot of parameters for all reports, my question is how I might use one template to create multiple reports with different column orders in the reports?
    For example, client A has the following column order in their report: firstName, LastName, DateBirth, SSN. Client B has the following column order in their report: SSN, DateBirth, LastName, FirstName. Can I use one template to create these multiple reports?
    Thank you!

    Sorry, the code was messed up in previous post:
    Template:
    <tr align="center" valign="top">
    <td align="center"class="instructiontext">
    <b>#MGR_NAME#</b>
    <br><font size=-2>
    #WORK_ROLE#</font><br><FONT class="smallBlack">
    Directs: #DIRECTS#   Total: #REPORTS#</font></td></tr>

  • Any way to force an "Ignore Column Order" w/ SSDT (even if custom code)?

    This used to be an option in the old VSDBCMD and VS DB Projects. Apparently it was lost when the move was made to SSDT. There has been some minor discussion of possibly bringing it back, but I was wondering if anything could be done to work around this in
    some way? I know that there is a Codeplex project for DacFx and some discussion on working around things like index options. I'm hoping it's possible in some way to work around the column order issue.
    Backstory - a well-intentioned DBA was trying to NULL out some columns, but decided that scrubbing would take too long so dropped the columns and added to the end of the table in one environment. That's a table with a couple hundred million rows and would
    take quite a while to rebuild, likely filling the log in the process. It would also disrupt ETL against that table.  It's not a production environment or we'd just try to get every other environment to match. That's not something we can do here so are
    forced to manually work around it in this one environment every time we need to make changes.

    That is a good question, to do this requires two functions and a restart of Bridge all done automagically
    Copy and paste the script into ExtendScript Toolkit
    This gets installed with Photoshop and can be found:-
    PC: C:\Program Files\Adobe\Adobe Utilities
    MAC: <hard drive>/Applications/Utilities/Adobe Utilities
    Start Bridge
    PC: Edit - Preferences - Startup Scripts
    Mac: Adobe Bridge menu - Preferences - Startup Scripts
    At the bottom click the "Reveal Button" this will open the folder where the script should be saved.
    Close and restart Bridge.
    Accept the new script.
    To use:
    Tools - Backup Manual Sort
    This will backup the hidden manual sort file .BridgeSort to .BridgeSortSave
    Tools - Restore Manual Sort
    This will copy the .BridgeSortSave back to .BridgeSort and will close and restart Bridge so that the manual sort is restored.
    if( BridgeTalk.appName == "bridge" ) { 
    var backUpManSort = new MenuElement( "command","Backup Manual Sort", "at the end of Tools" , "backupms" );
    var RestoreManSort = new MenuElement( "command","Restore Manual Sort", "at the end of Tools" , "restorems" );
    backUpManSort.onSelect = function () {
    var fileSort = new File(app.document.presentationPath +"/.BridgeSort");
    var fileSave = new File(app.document.presentationPath +"/.BridgeSortSave");
    if(fileSave.exists) fileSave.remove();
    fileSort.copy(fileSave);
    fileSave.hidden=true;
    RestoreManSort.onSelect = function () {
    var fileSort = new File(app.document.presentationPath +"/.BridgeSort");
    var fileSave = new File(app.document.presentationPath +"/.BridgeSortSave");
    if(!fileSave.exists){
    alert("No backup file exists");
    return;
    app.document.sorts = [{ type:"string",name:"document-kind", reverse:false }];
    if(fileSort.exists) fileSort.remove();
    fileSave.copy(fileSort);
    fileSort.hidden=true;
    app.document.chooseMenuItem("mondo/command/new");
    app.documents[0].close();
    app.document.sorts = [{ name:"user",type:"date", reverse:false }];
    Hope this works for you.

  • Report Does Not Follow Select Column Order

    Hi all,
    Apex 2.2 on 10gXE
    I always encounter this problem, the display column on report does not follow the select column sequence order in the "region source".
    It is very tedious clicking the up/down arrow one-by-one in the "report attributes" especially if the display columns are plenty like 40 columns.
    Is there a fix/patch or alternative tips for this bug?
    Thanks a lot,
    Edited by: 843228 on May 24, 2011 10:32 PM

    Apex 2.2 on 10gXEStart by upgrading from this old unsupported version.
    >
    I always encounter this problem, the display column on report does not follow the select column sequence order in the "region source".
    It is very tedious clicking the up/down arrow one-by-one in the "report attributes" especially if the display columns are plenty like 40 columns.
    Is there a fix/patch or alternative tips for this bug?
    >
    This is not a bug. APEX maintains the original column order of the report. This avoids problems downstream in areas like the processing of <tt>g_fnn</tt> arrays in declarative tabular forms, where the assigned arrays are column-order dependent.
    APEX 4.x fixes column ordering bugs that could lead to report corruption, and includes drag-and-drop column ordering in the new tree view in addition to the up/down arrow re-ordering.
    If you really want column order to follow that in the source query, the workaround is to create a new report using the modified query.

  • Serial numbers to generation at Sales Order Issue

    Hi someone knows about Serial Control
    Do use serial number at pick release is mandatory apply Installed Base?
    what´s different between serial numbers generation in reception and at Sales Orders Issue?
    thanks,

    Do use serial number at pick release is mandatory apply Installed Base?
    No it is not mandarory if you use this serial control (At Sales Order Issue). If you use serial number control at receipt then serial number is mandatory at the time of pick confirming.
    what´s different between serial numbers generation in reception and at Sales Orders Issue?
    At Receipt:
    You maintain serial numbers in inventory and transaction them in inventory for all transactions.
    At SO Issue:
    You enter the serial numbers only at the time of shipments.
    As IB knows the inventory controls it maintains the information accordignly. When in inventory serial numbers can be grouped into one instance as they do not have any serial number. Once shipped, the same instance will be split and is created as a different instance with the serial number.
    Thanks
    Nagamohan

  • Changing area text to normal text?

    Is there a quick way to change Area Text into normal text and keep the same position? Manually cut and pasting works, but it seems like an unelegant solution.

    Works like a dream! That you so much! This will save me hours of work today.

  • Update my iPhone 5 to iOS 7 days ago and still neither my iMessage nor FaceTime will let me log in and I am only spastically getting even normal texts.  Does anyone now how to fix this issue?

    Update my iPhone 5 to iOS 7 days ago and still neither my iMessage nor FaceTime will let me log in and I am only spastically getting even normal texts.  Does anyone now how to fix this issue?

    ACTIVATING FACETIME AND IMESSAGES
    Activating Facetime and Imessages on your phone requires the ability to send SMS messages and depending upon where you are that might be an international SMS.  Check with your carrier to see if your plan supports sending of international SMS messages.  If you are having trouble activating Facetime or Imessages turn them both off on your device and reset the device (Hold down the Sleep/Wake button and the home button together until the apple logo appears (ignore the ON/OFF slider) then let both buttons go and wait for device to restart (no data will be lost)).  Wait for the device to restart and wait a minute and turn Facetime and imessage back on and wait for activation.  If that does not fix things read the following articles:
    http://support.apple.com/kb/TS4268
    http://support.apple.com/kb/ts3367

  • Cannot Alpha Order a Single Column of Info - PLEASE HELP

    I'm an expert on Excel and recently switched to a Mac and am now using Numbers. It should be simple to alpha order a single column of words, but after three days I can't get any options to work.
    When I try to sort just the column and select just the column name and just the selected cells it sorts the entire spreadsheet over and over again. Instant alpha is grayed out an unusable from the Format menu.
    PLEASE HELP! How can I get a single column of words to sort in alpha order. Nothing I've tried works and when I follow the help menu instructions it still sorts the entire spreadsheet and not just the selected column.

    NeedHelpNow2011 wrote:
    When I try to sort just the column and select just the column name and just the selected cells it sorts the entire spreadsheet over and over again.
    Hi Need',
    Welcome to Apple Discussion and the Numbers '09 forum.
    Numbers considers all of the date in a row to be a set (in database terms, a record), and sorts accordingly.
    Here are two ways to sort a single column:
    1. Copy the data from the column, Paste into a single-column table (or an otherwise empty table with any number of columns), perform the sort, then copy the newly sorted data and paste it back into the original column.
    2. Grab the column you wish to sort, tear it out of its table to form a new single column table. Sort, then drag it back into position and drop it back into the original table.
    The second method requires some explanation, which you'll find on page 58 of the Numbers '09 User Guide, or in more detail, in this discussion from a few days ago. Scan the thread for this image, check that message and the ones below it.
    On another note, you wrote:
    Instant alpha is grayed out an unusable from the Format menu.
    Instant alpha refers to the alpha channel which may be added to a graphic object to create transparency. It's not connected with sorting text or numbers. More in the Numbers '09 User Guide under "Removing the Background or Unwanted Elements from an Image" in Chapter 9, _Working with Shapes, Graphics, and Other Objects_.
    The numbers '09 User Guide, and its reference companion, the iWork formulas and Functions User Guide, are excellent resources, and well worth downloading and spending a bit of time with. They can be had through the Help menu in Numbers.
    Regards,
    Barry

  • Sales text and  Purchase Order Text

    Hi,
    in what tables are stored Sales text and Purchase Order Text of the material master ?
    Best Regards

    Hi
    All long text is stored in STXH and STXL.
    Object is MATERIAL.
    Text-Id for basic data text is GRUN
    Text-Id for purchase order text is BEST
    For sales order text it is text object MVKE with text-id 0001
    Go to SE37 function builder. Enter READ_TEXT and do a single test ( F8 )
    Enter your parameters and execute. Example below.
    NAME is a comibation of materialnumber (00000000008000000)WITH leading zeros
    if numeric and sales org (1000) plus distribution channel (10)
    Import parameters - Value
    CLIENT - 010
    ID - 0001
    LANGUAGE - E
    NAME - 000000000008000000100010
    OBJECT - MVKE
    ARCHIVE_HANDLE - 0
    LOCAL_CAT
    Just for future reference with regards to getting text id's etc.
    eg: PO texts.
    --> Go into the material master PO text
    --> Double click into the required text.
    --> Click the "GO TO" menu option.
    --> click Header.
    and all the info you need is there.
    Thanks..

Maybe you are looking for

  • Videos will not play in Safari on 2012 MacBook Pro.

    I watch a fair amount of YouTube videos and also videos on news sites, but suddenly videos will no longer play. I bought my laptop about a month ago. This has happened once already. I had to download the uninstaller for Adobe and then reinstall to fi

  • Strange behavior of Xpath in BPEL10

    Hi, I have a problem with a BPEL code who invoque a XSLT transformation, the XSLT transformation has this instruction (line 95 in the XSL file) <corecustmr:DataArea>               <corecustmr:Query>   <xsl:for-each select="corecustmr:DataArea/corecus

  • Outgoing email address

    When I select an email address from by book (e.g. John Smith) and insert it into the email, it comes up with the following,  "John Smith @MAMP;  in the middle of the address.  I think "MAMP" is a Mac  application but I have a Dell PC.  If I delete th

  • TS3642 where do i find my garageband songs on windows vista itunes

    I found the instructions and followed them correctly (i think) but I'm not finding my music. To share GarageBand songs with iTunes for Windows, send the songs from GarageBand as an audio file. I tapped the Navigation button in the control bar. Tapped

  • Implementing BAdI XSS_REM_INTERFACE.

    Dear. I need implement the BAdI XSS_REM_INTERFACE. I understand the have that use the method PROVIDE_FILTERED_RGDIR. The system in this method get the information in the table im_in_rgdir[]. I need that filter this information having in count if exis