REPT with spaces

Hi all.

I'm trying to use the Pages repeat a number a number of times, with a space between each repetition.

For example:

A, B AND C

1 15 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

2 6 2 2 2 2 2 2

3 6 3 3 3 3 3 3

4 7 4 4 4 4 4 4 4

5 8 5 5 5 5 5 5 5 5

I managed to use the REPT function to repeat the number without a space, but I can't seem to find a way to insert spaces. Here is where I am at the moment:

Here's the file Dropbox:

https://www.dropbox.com/s/ke76qdtpmmv6au9/quantities.numbers?DL=0

Can anyone help?

Thank you.

Hey Danny,

Is that what you're after?

Formula in D1 (fill down)

= REPT(A1&"",B1)

Thanks for the link Dropbox. That made it easy!

Kind regards

Ian.

Tags: iWork

Similar Questions

  • FTP access with spaces in the names of dir

    Hello

    I'm doing a recursive list of files in an FTP directory.

    Although FileZilla deals with spaces in the names of directory without problem, it seems that Labview struggles a little.

    In effect, if I ask labview for files and a folder named directory, for example/Projects/Camera 1 /, it returns an empty array (while FileZilla sees clearly 12 files in that folder). It seems that the problem is white in the name space, because if I replace (using FileZilla) the space character by '_', LV correctly gives me the list of files.

    No idea how the LabView FTP working properly deal with spaces in the directory and file names?

    Best regards

    perper2001

    Hello

    Unfortunately, I can't share the code, but here's a screenshot of what it looks like.  It is based on the "vi directory listing" which comes with labview.

    Basically, it send the command MLSD and wait for an answer. After that, it's a matter of parsing of the response from the server that my FTP looks like this:

    type = CDIR; sizd = 3; change = 20150220090455; UNIX.mode = 0705; UNIX.uid = 32210; UNIX.gid = 100; single is d8g863beb0;.
    type = IRDP; sizd = 5; change = 20150302165245; UNIX.mode = 0705; UNIX.uid = 32210; UNIX.gid = 100, unique = d8g863beae;...
    type = dir; sizd = 12; Change = 20150302000236; UNIX.mode = 0705; UNIX.uid = 32210; UNIX.gid = 100, unique = d8g863beb2; Battery camera 9

    Kind regards

    Peper

  • split the table 1 d of string with spaces in solitary segments

    Hello ppl,

    I wanted to post it because it took me a while to do this thing. I have table with spaces and I do the 2D array. For example:

    ? NM 100.0 ok->

    ? NM

    100.0

    Ok

    Take a peek inside. Maybe someone will find it useful.


  • Padding with spaces before update does not

    Hi, I have to insert/update to update a column in ERP which is CHAR NOT NULL.

    In this ERP, if the field is null, it must be filled with spaces

    Example:

    my_field tank (100) not null;

    Thus,.

    When I update this empty data field, it must be:

    update my_table set my_field = rpad(' ', 100)
    
    

    It is a requirement of the ERP. I Don t have control over that.

    I have a form that manage a table of this ERP. In the before INSERT trigger and the datablock UPDATE before I added:

    :my_block.my_field := rpad(nvl(ltrim(:my_block.my_field), ' '), 100);
    
    

    But I always got the error:

    ORA-01407: cannot update ("BAAN"."TTBMTB108100"."T$NOCO$O") to NULL
    
    

    Looks like it's cut the value.

    Work around this problem, I creates a trigger 'before insert or update"where I replace null with space value... but I wonder if he is optioned property or that this either in the forms for it to work as (I think) should be.

    Are there?

    Forms will prune your article, is how forms work. TANK is really something you normally avoid and use VARCHAR2. I understand that you have no control over this.

    So, your table trigger is a solution, or create a trigger to INSERT IT in your form:

    declare

    l_item char (10);

    Start

    l_item: = rpad (nvl (ltrim(:my_block.my_field), ' '), 100);
    insert into my_table (l_item) values;

    end;

  • Síntax liquid for webapps fields with spaces

    Silly question I am stock with.

    How we make in a video collection called a field named as 'Youtube Id' {{video.items. ["YouTube Id'] | JSON}} does not work...

    Thank you

    Hi, Machinette

    While using the code {{this.video.items [0].}} ["YouTube Id'] | JSON}} you access the array element, so that everything will work fine, however if you want to display all items from webapp 'Youtube Id' field then the best option is to use the for loop.

    Example: {module_webapps id = "1223" filter = "all" collection model = "webcall" = ""} / / I have collected all the data of webapp id 123 to collection webcall

    This webapp now have the name of the 'Number of tickets' field (with spaces).

    To display all the data in the 'Number of tickets' field, we can run a forloop as below

    {% for items in webcall.items %}

    {{Items. ["Ticket number"]}}

    {% endfor %}

    This will display all the items in the "Ticket number" field.

    I also created a test page: test of liquid

  • Replace the comma with space - we can do it without REGEXP?

    11 GR 2 DB.

    Can you replace comma with a space without using REGEXP?
    Sample String: 'To,Replace,,Comma(s),,,,with space,,,'
    Expected output:'To Replace Comma(s) with space '

    884476 wrote:
    11 GR 2 DB.

    Can you replace comma with a space without using REGEXP?

    You could do it with REPLACE nested...

    select    replace(
                replace(
                  replace(
                      'To,Replace,,Comma(s),,,,with space,,,',',','#$'
                         ),
                      '$#',''
                       ),
                     '#$',' '
                     ) str
    from dual;
    
    STR
    -------------------------------
    To Replace Comma(s) with space 
    
  • Gah! Web site has the function which replaces Chr (10) with spaces

    Hello, everyone.

    I'm working on a site that has a function that will automatically replace all Chr (10) with spaces when a form is present. I can't prevent this being used.

    When a form with a textarea component is present, line all the jumps are replaced by spaces, destroying the formatting of what was originally submitted.

    When you pull of the text from a database, how are we going to rebuild line breaks and the restoration of the formatting?

    Thank you

    ^_^

    Optionally, use javascript to replace the lf characters before the form is submitted.  Replace all the lf characters with some other characters that you can later (on the side Server) replace in any character you want.

    I really don't like this solution, but it could work.  It feels good for me because it's just a hack to work around the problem.  I agree with Adam because I would try to remove the offending first software.  Or at least to stop depriving the lf characters.  Is - configurable as to what replaces it?

  • Table - sepatare elements with spaces

    Hello

    Is it possible to replace commas output table with spaces?

    Instead of array.toString (), use array.join(""):

    
    
        
            
        
    
        
            
        
    
        
        
    
    
    

    Peter

  • CS3 files with spaces in the name

    I have a slight problem with the files that are in folders that have spaces in the name of the folder.

    For example, the file is in the following location: rtu 41%.psd/c/n Hold/Test Image file/mondeo

    If I run the script, it creates a folder called ScriptFolder to the location of the file and a saveAs psd files in that folder but I get an error.

    General Photoshop error occurred. This feature can pas...ld\...\mondeo n 41% ' because the file is not found.

    If I change ' folder of images to test ' to 'Test_Image_Folder', which is where the file is the script works.

    Here's the script of any suggestions on how I can get around this?

    var myPsDoc = app.activeDocument;
    var justname = myPsDoc.name.split ('.) ») [0]
    var MonNouveauDossier = new Folder(myPsDoc.path+"/ScriptFolder/"); "
    If {(myNewFolder.exists)
    } else {}
    myNewFolder.create ();
    }
    newFile = new file (MonNouveauDossier + "/" + justname)
    photoshopSaveOptions = new PhotoshopSaveOptions()
    photoshopSaveOptions.embedColorProfile = false
    myPsDoc.saveAs (newFile, PhotoshopSaveOptions, true, Extension.LOWERCASE)

    With the help of decodeURI should take care of the problem with spaces in the path.

    var MonNouveauDossier = new folder (decodeURI (myPsDoc.path) + "/ScriptFolder/");

  • AppleScript, Terminal Server and files with spaces

    Hey all, I wrote a small program to move files with the script action do. I came across a problem with files that have spaces. AppleScript freaks out a bit when I use the terminal command 'touch ~/Desktop/Hello\ world. " Is there a work around for this?

    tell application "Terminal"
      do script "touch ~/Desktop/Hello\ World"
    
    end tell
    

    Put a second-next to the existing one.

    (139109)

  • Trying to extend the c drive with space unallocated in diskpart.exe - I get the message that there is not enough space. what I am doing wrong?

    DiskPart.exe help - not enough space - I have more than 5 GB of unallocated space. trying to expand the C: drive

    Hello mark_kman,

    Thank you for visiting the Microsoft answers community.

    It sounds as if you have multiple partitions. Disk management and DiskPart extends the volume with a focus on the next contiguous unallocated space. For basic volumes, the unallocated space must be on the drive and must follow (have a plu sector offset number than) the partition with focus.

    If you are looking at disk management, this means that, if you look at your partition C: the unallocated space MUST be located directly to the right of the C: partition. If you have another partition between the two, you will be allowed to extend the partition directly to the left of the unallocated space.

    This could be a work around, if you have C: and D: and have files on D: but have more space.

    -D: shrink to create just enough unallocated space to store your files located on D:.
    -Create a new partition with unallocated space to move your files.
    -Move your D: files to your new partition.
    -Now, to delete the D: partition

    This creates unallocated space between your C: partition and the new partition that you created to move your files.

    -Now right click on your C: partition and extend as usual.

    Hope this helps
    Chris.H
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How to create an app with space name?

    Hi all

    How to create an application with the space, for example "Hello Word" name When I run my Simulator, I got ' Hello$ 20World "instead. I use the plugin for eclipse for development. I can see the Application descriptor for my application, and it shows the thin space. I tried to change the Blackberry project properties tab generate file output name, but it doesn't help in any way. Please advise...

    Goto Blackberry project properties

    Click the general tab

    Write in title = "Hello World".

    and you can see your title of the modified project

    I hope that you ask for it only!

  • WIN8 scheduled task does not work with spaces in the path of the program

    Hello, I walked with this problem. I created a basic task using the Task Scheduler, and I noticed if the program you want the task to run, it's the path contains white space, it will not work.

    Does anyone know how to solve?

    I tried with this http://support.microsoft.com/kb/823093/en-us, but could not make it work.

    Thank you.

    I had the same problem http://answers.microsoft.com/en-us/windows/forum/windows8_1-system/scheduled-tasks-don ' t-run-pops-up-how-do-you-want/14e9f209-09b7-46a9-8739-ba821b565e1b?tm=1430262836762 with a task "alarm" working if the file name has spaces. I renamed the file, but win8.1 must be able to handle spaces in the directory/file names. I think it's a bug.

  • Subtitles appear with spaces between characters

    When captions are displayed in the program monitor, they are displayed with the s p a c e s e b e t w e n t d e c h a r a c t e r s, l I k e t h I s.

    This happens with captions that are imported, but also legends that are created with the tool caption first.

    This is especially a problem for Arabic fonts that require letters to be joined together without spaces.  (Other problems with the Arabic text in the caption tool, but that's a different debate.)

    Any thoughts on how to fix the spaces between the problem of characters?

    Hello

    This seems to be a standard or by design.

    Nothing that we can change the settings.

    But you can go ahead and request a feature here:

    Feature request form

    Thank you

    Ilyes Singh

  • Did not backup VCenter VM with space in name and the virtual created from ESX host computer

    Hi all

    Have worked on the backup of VMware VM ESX 4.1,5.1.5.5 for nearly a year and now I'm familiar Vsphere API (VADP), VDDK API,.

    Now, I'm working on the same implementation by using the credentials of vCenter it works very well up there in the name of VM space.

    VDDK API fails to open the disc with the error code VIX_E_FILE_NOT_FOUND 4, I studied on it, the problem is with "vmpath", the setting is mandatory when using VDDK with vCenter.

    vmpath is in cnxParams and it specifies the owner of the particular disc vm.

    vmpath format is "vmpath = DatacenterName/vm/VMname" for example. 'vmpath = myDC/vm/testVM' it works perfectly

    but the problem is when it's likevmpath = myDC/vm/test VM"i.e. the space in my VM name and then fails.

    I use VDDK 5.5.4 and vCenter 6.0 because it is compatible with the other.

    Thank you and best regards,

    Dipak Poirier

    Please provide a code snipped, including the full command. This could make things more clear.

    André

Maybe you are looking for