Formatting in Project Siena/Excel

I am trying to show a list/long set of data in a presentable way in project siena.  I would like this text to be divided up into bullet points, but I do not see anyway to format text in Excel or Project Siena.  The text is being added from a table
in Excel into Project Siena.

You could use an HTML label.
"<html>
<head>
                <title>table</title>
</head>
<body>
<li>" &  First(Table1)!item & "</li>
<li>" &  Last(FirstN(Table1,2))!item  & "</li>
<li>" &  Last(FirstN(Table1,3))!item  &"</li><li>" &  Last(FirstN(Table1,4))!item  & "</li>
<li>" &  Last(FirstN(Table1,5))!item  &"</li>
</body>
</html>"
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Harold Kless Microsoft
Online Community Support

Similar Messages

  • Search whole table (imported from an excel file) for those matching substring (this is an input from user) in project siena

    Im trying to search my entire table (data is imported using an excel file - containing 2 cols, description and image url) for those that match the substring entered by the user into an inputText within project siena. I have 2 screens within the project,
    the first screen shows all the data in a gallery, the second screen will allow the user to search for those that match the word he/she has enter. The entered word is only a sub string, and I want to search all rows which match that sub string.. Help would
    be appreciated as im a newbie to making windows apps!!

    Lest say you have 'Gallery1' in screen1 and 'Gallery2' in screen2. your Excel input table is called 'table1' and your input text box is called 'inputText1'.
    If you have bound 'table1' to your 'Gallery1', then you can accomplish what you are trying to do by using this rule on Items property of Gallery2: "Filter(Gallery1!AllItems, InputText1!Text in Description)"
    The above formula will filter out rows that have description containing the input text.

  • Text format to Caps - Project Siena

    Hey there,
    Need to format user input text to all caps, is there  anyway to do it in Project siena?
    If  anyone can help me on this, would be helpful,
    Thanks in advance :)
    saravana

    Use the Upper function.
    For example, if you want to collect the text front Text1, you could use:
    Collect(Collection1, {MyValue: Text1!Text})
    If you want the all caps version, use:
    Collect(Collection1, {MyValue: Upper(Text1!Text)})
    A list of all Siena functions can be found at the link below.
    https://technet.microsoft.com/library/dn690139
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This is beneficial to other community members reading the thread.
    -Bruton

  • Can I convert Facebook time Text to Project Siena's Date value ?

    Can I convert Facebook time Text to Project Siena's Date value ?
    I want to show create_time on screen by my Localtime formatted text.
    Facebook time Text = 2014-07-14T11:22+0000
    I want to show = 2014/07/14 18:22
    My Time Zone is +09:00, Osaka/Japan.
    Currently I try it by Text/Replace/Replace/Replace/Left/DateValue/+ , etc.
    And I ask more simple way.
    Regards,
    Yoshihiro Kawabata

    Thank you Andy , and Robin, I can.
    Text(TimeValue(Substitute(ThisItem!created_time,"+0000",".000Z")),"yyyy/mm/dd hh:mm")
    At Facebook Albums's Gallary, I can convert from Facebook created_time to Localtime Text DateTime.
    and I hope more easy way like Excel Power Query's one.
    Regards,
    Yoshihiro Kawabata

  • How to incorporate live tiles into a Project Siena app (kinda)

    Hi guys,
    I have been playing around with getting some live tiles into my project siena app (Astronomy Action Centre), and at last I have managed it.
    What I did was as follows
    Publish your app as normal and import it into Visual Studio
    When you have it imported paste this code into the init.js file. I pasted mine into the following location of that file. Near the top of the file (just before the var statements)
    CODE TO PASTE
    var notifications = Windows.UI.Notifications;
                    var recurrence = notifications.PeriodicUpdateRecurrence.hour;
                    var urls = [
                        new Windows.Foundation.Uri("url1"),
                        new Windows.Foundation.Uri("url2"),
                        new Windows.Foundation.Uri("url3"),
                        new Windows.Foundation.Uri("url4"),
                        new Windows.Foundation.Uri("url5")
                    notifications.TileUpdateManager.createTileUpdaterForApplication().enableNotificationQueue(true);
                    notifications.TileUpdateManager.createTileUpdaterForApplication().startPeriodicUpdateBatch(urls, recurrence);
    END OF PASTE
    What you need to do now is replace the url1,url2,url3,url4,url5 with data sources.
    I got mine from http://www.buildmypinnedsite.com/en
    This site creates live tiles for your webpage but we are going to use the datasources for our app.
    Enter the RSS details of the site that you want to have as a live tile into this site.
    Here is the RSS url from my own site
    http://www.viewfromascope.com/feed/
    follow the steps through to the last one and you will get a code like this
    <meta
    name="msapplication-TileColor"
    content="#000000"/>
    <meta
    name="msapplication-notification"
    content="frequency=30;polling-uri=http://notifications.buildmypinnedsite.com/?feed=http://www.viewfromascope.com/feed/&amp;id=1;polling-uri2=http://notifications.buildmypinnedsite.com/?feed=http://www.viewfromascope.com/feed/&amp;id=2;polling-uri3=http://notifications.buildmypinnedsite.com/?feed=http://www.viewfromascope.com/feed/&amp;id=3;polling-uri4=http://notifications.buildmypinnedsite.com/?feed=http://www.viewfromascope.com/feed/&amp;id=4;polling-uri5=http://notifications.buildmypinnedsite.com/?feed=http://www.viewfromascope.com/feed/&amp;id=5;
    cycle=1"/>
    Now copy the links below in place of the url1,url2,url3,url4,url5 in the code we pasted into visual studio.
    http://notifications.buildmypinnedsite.com/?feed=http://www.viewfromascope.com/feed/&amp;id=1
    http://notifications.buildmypinnedsite.com/?feed=http://www.viewfromascope.com/feed/&amp;id=2
    http://notifications.buildmypinnedsite.com/?feed=http://www.viewfromascope.com/feed/&amp;id=3
    http://notifications.buildmypinnedsite.com/?feed=http://www.viewfromascope.com/feed/&amp;id=4
    http://notifications.buildmypinnedsite.com/?feed=http://www.viewfromascope.com/feed/&amp;id=5
    Now save and run your app, if you browse to your Start menu and pin your app you should see the live tiles updating.
    the caveat is that you have no control over the layout of the tiles, it seems to work best in wide and square format, the large tile updates but keeps repeating the same news.
    So there it is live tiles on a project siena app.
    if anyone can add to this I would love to hear from you, or if you have any questions please let me know.
    Latest Version of my own Project Siena App with live tiles
    http://apps.microsoft.com/webpdp/app/0c8cff77-1e0f-445b-9628-92fe602d2c98
    Ronan

    If you aren't going to use a live tile on an actual website, you don't have to use buildmypinnedsite dot com.
    Here is a template. If you have multiple REST/RSS sources, you can use different sources for each of the 5 items that are cycled. They can be from different sites. You need to check if images in the feeds are enclosures. If they are, then the feed won't
    work properly. You can use text and image based feeds or text only, just don't use any that have enclosed images. Here is a template you can copy and paste. replace the red text with your own customized information.
    var notifications = Windows.UI.Notifications;
    var recurrence = notifications.PeriodicUpdateRecurrence.HalfHour;
    var urls = [
    new Windows.Foundation.Uri("http://notifications.buildmypinnedsite.com/?feed=http://whateverrssfeed1&amp;id=1"),
    new Windows.Foundation.Uri("http://notifications.buildmypinnedsite.com/?feed=http://whateverrssfeed2&amp;id=2"),
    new Windows.Foundation.Uri("http://notifications.buildmypinnedsite.com/?feed=http://whateverrssfeed3&amp;id=3"),
    new Windows.Foundation.Uri("http://notifications.buildmypinnedsite.com/?feed=http://whateverrssfeed4&amp;id=4"),
    new Windows.Foundation.Uri("http://notifications.buildmypinnedsite.com/?feed=http://whateverrssfeed5&amp;id=5")
    notifications.TileUpdateManager.createTileUpdaterForApplication().enableNotificationQueue(true);
    notifications.TileUpdateManager.createTileUpdaterForApplication().startPeriodicUpdateBatch(urls, recurrence);
    -- Barb Bowman

  • I can't download Project Siena Beta3 from Store

    Dear officers,
    First of all thank you for developing "Project Siena" I was waiting for Beta3 for a long time. I am a little disappointed when I first saw whats new in the third Beta. I was waiting for Barcode / Text recognition (via camera) implementation. But
    I am hopefully waiting to see it in the next versions. My problem is;
    - I can not access to Windows Store through my Work-laptop.But I can install appx files by running with Powershell. Is there a place where I can download Beta3 in "*.appx" format?
    -Or any other methots without the official Store is welcome.
    Thanks in advance.
    Oguz

    I'm wondering if maybe there was an oversight and it just didn't get listed for your region?
    Maybe the following would be a temporary work-around to get it installed - switch your region with the below help and maybe then you'll be able to see it / install?
    http://windows.microsoft.com/en-us/windows-8/use-windows-store-country-region-help
    (below text were steps I found in a different post - I don't recall where I found this as this was several days ago and came from a MS employee responding to a similar type of inquiry not related to Siena)
    Some apps are unavailable in some countries or regions. In this case, if someone shared a link to an app with you, you’ll be able to see the app description page on the web but when you try to view the app in the Store, you’ll see a message that the app
    isn’t available. To check your country or region setting perform the steps mentioned below:
    a: Swipe in from the right edge of the screen, and tap  Settings.
     (If you're using a mouse, point to the upper-right corner of the screen, move the mouse pointer down, and then click Settings.)
    b: Tap or click Change PC settings.
    c: Tap or click Time and language, then tap  Region and language
    d: Under Country or region, look to see that your location is set correctly, and change it if it's not
    Thor

  • My latest Project Siena App is now in the store

    I decided to build yet another Project Siena App the other day when I was semi snowed in.
    My NWS-NOAA Weather Prediction Mini Center Windows 8 app lets you quickly view the National Forecast Chart for three days, shows the Quantitative Precipitation Forecasts for up to 7 days, and view Excessive Rainfall Forecasts. It’s available now in the
    Windows Store (for USA). You can read more about it (and my love for Project Siena) at
    http://digitalmediaphile.com/index.php/2014/02/20/my-weather-prediction-mini-center-app-is-now-available/.
    This very simple app went through store certification in record time yesterday. Made my head spin.
    Submitted at 1:15pm
    Approved at 2:10pm
    Available at 2:45pm
    All times above Eastern.
    Main screen:
    Can't wait to see what the next release of Project Siena brings. Hoping for Portrait view CSS support and Windows 8.1 target support.
    -- Barb Bowman

    On Tue, 6 May 2014 11:05:13 +0000, MonaTech wrote:
    >In terms of styling what I do is
    >
    >1. create an excel file with 1 column titled num1 or something
    >
    >2. Beneath that add sequential numbers 1,2,3,4,5 (the numbers correspond to the number of pages in your gallery), create a table and save the file
    >
    >3. Add that file as a data source.
    >
    >4. Create a custom gallery and make set the items to the table,
    >
    >5. Start adding your elements to the first section of the gallery
    >
    >6. in the visible property add if(thisitem!num1=1,true,false)
    >
    >This will make that element appear on the first section of the gallery, if you put if(thisitem!num1=2,true,false) then it will appear in the second element and so on.
    >
    >It does get a little awkward when you start adding more elements but if you label each element correctly it makes live an awful lot easier.
    >
    >Using this method you can add items of different sizes and shapes to each element of the custom gallery. So you could make something like the bing news app if you like.
    >
    >I hope this helps, if you have any other questions please let me know, also I would love to see your siena forum app, I really like the layouts of your other apps and would be keen to see your app on the forum.
      that's really cool. I like that alot.
     After I saw your post about the app, I stopped playing with mine ;-)  Maybe
    I'll finish it... But since yours works, I didn't see any need <G> as I was not sure how to fix the messy HTML tags in the description. Like I said, MS has an RSS feed that leaves a lot to be desired.
    -- Barb Bowman

  • Can I connect Azure SQL Database from Project Siena ?

    Can I connect Azure SQL Database from Project Siena ?
    I want to connect Azure SQL Database of Office 365 SharePoint's Access App from Project Siena.
    Access App's Database is Azure SQL Database.
    and can connect to Excel/PowerBI/etc.
    Access App's Database can connect from specific location / any locations.
    Access App's Database can allow read-only connection / read-write connection.
    I want to create Windows App connected to Access App's Database.
    Regards,
    Yoshihiro Kawabata.

    Hi Yoshihiro,
    Could you share more with us about the high level scenario for what you are trying to accomplish offline? We can discuss further at
    [email protected]
    Once we are done, we will definitely share our findings with the community.
    Thanks!

  • Error in saving and Project Siena close/crash

    I am new to Project Siena and when I try to save my work, I receive an error:
    "Error: test.siena cannot be saved. The file may be in use by another application"
    Another problem is when I load a WADL, the Project Sienna closes or crashes. The WADL I am loading comes from the WADL generator tool.
    Any thoughts on how to resolve these problems?
    Thanks

    Hi Medel,
    We fully support Windows 8.1 Enterprise, therefore it is alright to use that SKU. As long as you have Windows 8.1, all that Siena needs, will be provided by the Operating System.
    As a follow up for you, on the other laptop, if you do the following what happens?
    1) Reboot
    2) Start Siena, once the machine comes back up
    3) Start a new document and save as something other than "test.siena", on your desktop
    Does it save? If it does not, you may have to post on the Windows Forum and see what suggestions are available.
    Thanks.

  • I need format for data in excel file load into info cube to planning area.

    Hi gurus,
    I need format for data in excel file load into info cube to planning area.
    can you send me what should i maintain header
    i have knowledge on like
    plant,location,customer,product,history qty,calander
    100,delhi,suresh,nokia,250,2011211
    if it is  right or wrong can u explain  and send me about excel file format.
    babu

    Hi Babu,
    The file format should be same as you want to upload. The sequence of File format should be same communication structure.
    Like,
    Initial columns with Characteristics (ex: plant,location,customer,product)
    date column (check for data format) (ex: calander)
    Last columsn with Key figures (history qty)
    Hope this helps.
    Regards,
    Nawanit

  • Can I convert Twitter time Text to Project Siena's Date Value ?

    Can I convert Twitter time Text to Project Siena's Date Value ?
    I want to show localtime of Twitter created_at.
    Twitter time text = ThisItem!created_at , ex: Tue Jul 15 17:19:00 +0000 2014
    I want to show 2014/07/16 02:19 by Japan localtime.
    Regards,
    Yoshihiro Kawabata

    Siena uses JavaScript to parse date/times, via the TimeValue function. A good specification regarding what is acceptable can be found here:
    https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse
    The example above is truly bizarre: I thought I had seen it all. You will need to turn that form into one of those listed on the above site, using string functions to chop it up and reassemble it into a saner form.

  • URGENT: Can't publish app after November update - Project Siena

    Hi,
    I have several apps that I want to publish, but am unsuccessful.
    After update in November came out my Siena refused to publish so I reinstalled it from the App Store just now. Even though I did this, in the new version, the same message keeps appearing.
    Why can't I publish?
    This is pretty urgent, as I need to present the apps in 24 hours to our customer.  My ass is on the line...
    Any help appreciated - BIG THANKS
    Peter

    Peter,
    I'm not sure if you're working with a company issued device that may have restrictions which are causing you problems (we've seen this in the forums for previous versions) and considering you have a short turn-around, have you tried installing Project Siena
    on another PC?
    Another route would be to set up a virtual machine and install Siena.  Microsoft offers 90 day virtual machines in various platforms that may help in getting things set up quicker:
    https://modern.ie/en-us/virtualization-tools#downloads
    Thor

  • Question About the Pen Control in Project Siena

    Hi, good day.
    I'am working on some tech demos with Project Siena, and I need to use the pen control so that the user draw some lines in the main page of the app. I decided to hide the pen controls, so there's only a white canvas. Sometimes the user will need to erase
    some strokes... and because I hide the controls, I need a way to toggle between Draw Mode and Erase Mode.
    I added a Toggle Switch so that in the OnCheck method I could add this expression "PenMode!Draw" or "PenMode!Erase",
    but it doesn't help. I think I am using a wrong way. Are there any suggestions on how to switch between draw and erase mode within the pen control, without showing the controls?
    Also, is there any way to erase or reset ALL the strokes in the pen control? For example, drawing some lines inside the pen control, and that the user can clean all the strokes at once.
    Thanks,
    Antonio S.

    Antonio,
    It is possible to do both.  
    I have uploaded an example of this called Pen Control to the following:
    https://onedrive.live.com/#cid=5CEEF21796F5830D&id=5CEEF21796F5830D%218724
    For the Mode Toggle:
    Set the Mode (Design > More > Mode) to CTRLpen
    Create a Slider with the Min set to 0, and the Max set to 1.
    Set the Slider's On Change to the following:
    If(Slider1!Value = 0,UpdateContext({CTRLpen: PenMode!Draw}),UpdateContext({CTRLpen: PenMode!Erase}))
    For the Erase All
    Set the Pen's Clear to PenClear
    Create a button.
    Set the Button's On Select to the following:
    UpdateContext({PenClear: true}); UpdateContext({PenClear: false})
    Note:
    CTRLpen and PenClear are names I made up.  You can replace them with whatever names you want to use, as long as they are not names reserved by Siena.
    -Bruton

  • Why Reports format behaves different in Excel and browser(if desformat=html or pdf)?

    1-Why Reports format behaves different in Excel and browser(if desformat=html or pdf)?
    2-I made three queries Q1,Q2 & Q3 and linked them with proper field links but suppose Q3 returns no records for some Q1&Q2 records & when the report runs for delimited options it reflects only those records as output for which all the queries return records(if Q3 returns no record then the related records from queries Q1,Q2 don't reflect) while the output in desformat=html or pdf is ok..
    can you please resolve my problems
    ( I have installed patch 5a in my report server machine)
    Thanks & Regds.
    Suneel
    null

    What do you mean by "different"? (In our
    experience, Oracle html output has too many
    columns, which are not visible in the
    browser but are obvious in Excel.)
    We build our own html programmatically, so
    that Excel matches the browser more closely.
    -- Allan Plumb

  • How to include Image from RSS grab by Project Siena

    hi 
    i recently tried to create a RSS reader app using Project Siena but i found out that it doesnt grab photos/images together..im using wordpress blog rss. Is it possible to add any extra code like encoded: in the Source Code... because im currently doing for
    other website..

    Hi Myh,
    Building off StonyArc's suggestion, what you would need to do is add the RSS Feed as a REST data source. Assuming you leverage the following RSS Feed in REST https://en.blog.wordpress.com/feed/ via
    the "Configure a connection" option and the added data source name is
    feed. You would then need to the following:
    1) Drop an "Image Gallery with Caption" and set its 'Items'
    property to feed!channel!item as this contains all the items from the feed.
    2) Edit the Gallery template and set the Image control within the gallery to
    'media:thumbnail'!'$attributes'!url
    This should now bring up the image per post. Note that all posts, do not have images, therefore some items within the gallery will be blank.
    Hope this helps. Thanks.

Maybe you are looking for

  • How can I put these files from my dropbox into MS Word?

    After using migration assistant, I had 2 user accounts set up by accident. I finally figured out how to move/share files from the cloned user account to my new account. Anyway, I moved all my music and pictures into itunes and iphoto, but now, how &

  • BOM Explosion Number in Sales Order

    Hi Experts,      For a make-to-order case, I would like to assign a predefined BOM explosion number with fixed key date to a sales order item. Instead of manually assigning the BOM explosion number to the sales order item, is there any way to let the

  • Installing OS X on new internal hard drive

    I recently purchased this compter second hand. It had a 6 GB hdd. Afer loading all my software, I had no more room. I even loaded OS 10.2 but ever since I installed a 120 GB Seagate drive, I can not load OS 10 on the drive. It appears to be unmounted

  • Specify file name of the document returned on the HTTP post

    Hello, we are submitting a PDF form by calling submitForm function: doc.submitForm         cURL: "http://localhost/script",         cSubmitAs: "XML" The server returnes data of type "Content-type: application/pdf" and as a result this aplication/pdf

  • Is there any chance of creating conditions for parameters in discoverer...

    Hello all, can u help me.. i will tell the situation i have some countries with some codes like 40 to 80. and i have a group name for these countires like 'EMT'. like that i have total three groups of different names .... I like to create a parameter