<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: Spreadsheet Fixed column size or column resize in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525702#M104944</link>
    <description>&lt;P&gt;Oh boy, you are right Mustafa. I miss the old days when I got emails when someone posted a reply on my message chains.&lt;/P&gt;
  &lt;P&gt;Kind regards&lt;/P&gt;
  &lt;P&gt;Martin&lt;/P&gt;</description>
    <pubDate>Tue, 08 Aug 2017 14:34:19 GMT</pubDate>
    <dc:creator>Martin-Pankraz</dc:creator>
    <dc:date>2017-08-08T14:34:19Z</dc:date>
    <item>
      <title>Spreadsheet Fixed column size or column resize</title>
      <link>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaq-p/525697</link>
      <description>&lt;P&gt;Hi, &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; In crosstab we have an option to fix column size but same feature is missing in spread sheet component, I am able to resize the column width during debugging mode (F11 DOM explorer) but not able to achieve the same using CSS (below). Any suggestions will be helpful. &lt;/P&gt;
  &lt;P&gt;Thanks&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;&lt;EM&gt;.mysp.sapEpmUiControlAnalyticgridGridTableInner&lt;/EM&gt;&amp;gt;&lt;STRONG&gt;tbody&lt;/STRONG&gt;&amp;gt;&lt;STRONG&gt;tr&lt;/STRONG&gt;&amp;gt;&lt;STRONG&gt;td&lt;/STRONG&gt;&lt;EM&gt;.colIndexCell&lt;/EM&gt;&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;{&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;width: &lt;EM&gt;100px&lt;/EM&gt;; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;min-height: &lt;EM&gt;16px&lt;/EM&gt;;&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;}&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;Or &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;&lt;EM&gt;.mysp1.sapEpmUiControlAnalyticgridGridTableInner&lt;/EM&gt;&amp;gt;&lt;STRONG&gt;tbody&lt;/STRONG&gt;&amp;gt;&lt;STRONG&gt;tr&lt;/STRONG&gt;&amp;gt;&lt;STRONG&gt;td&lt;/STRONG&gt;&lt;EM&gt;.general&lt;/EM&gt;&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;{&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;width: &lt;EM&gt;100px&lt;/EM&gt;; min-height: &lt;EM&gt;16px;&lt;/EM&gt;&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;}&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/58627-mlo8a.png" /&gt;&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/58628-ljxwc.png" /&gt;&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/58629-mvby2.png" /&gt;&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/58630-ibzbu.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2017 23:58:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaq-p/525697</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-08-03T23:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Spreadsheet Fixed column size or column resize</title>
      <link>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525698#M104940</link>
      <description>&lt;P&gt;Hello Sai,&lt;/P&gt;
  &lt;P&gt;You are almost there. I guess you assigned a custom class to your spreadsheet called mysp. That increases the complexity to create a selector to do what you want. The easiest way of doing this would be:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;.sapEpmUiControlAnalyticgridGridTableInner&amp;gt;tbody&amp;gt;tr&amp;gt;td.colIndexCell{
   width: 100px!important;
   min-height: 16px!important;
}&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;However now every spreadsheet on your dashboard will be resized accordingly. In case you want to use your custom css class to avoid that, you need to revisit the html structure like you did with the developer tools before. Your custom class sits higher up on the tree and is accompanied by other sap standard classes. You need to deal with that when writing your selector. Also note the "!important" extension to override other css properties. Either you use that option or write a more selecive css selector. You can check stackoverflow.com for lots of examples.&lt;/P&gt;
  &lt;P&gt;Kind regards&lt;/P&gt;
  &lt;P&gt;Martin&lt;/P&gt;</description>
      <pubDate>Fri, 04 Aug 2017 08:09:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525698#M104940</guid>
      <dc:creator>Martin-Pankraz</dc:creator>
      <dc:date>2017-08-04T08:09:39Z</dc:date>
    </item>
    <item>
      <title>Re: Spreadsheet Fixed column size or column resize</title>
      <link>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525699#M104941</link>
      <description>&lt;P&gt;Hi Martin,&lt;/P&gt;
  &lt;P&gt;Excellent! now I understand why my custom CSS is not working - may I know if there a way to specify which columns should have fixed size, for example I always have 13 columns (material and 12 Jan - Dec measures), here can I fix the column size per column starting from column "A" ?&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/60814-ag04z.png" /&gt;&lt;/P&gt;
  &lt;P&gt;Appreicate your help.&lt;/P&gt;
  &lt;P&gt;Thanks&lt;/P&gt;
  &lt;P&gt;SK&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2017 06:19:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525699#M104941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-08-08T06:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: Spreadsheet Fixed column size or column resize</title>
      <link>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525700#M104942</link>
      <description>&lt;P&gt;Hello Sai,&lt;/P&gt;
  &lt;P&gt;good to hear you got the hang of it now. If you can rely on the indexes of the columns I would use the css property "nth-child". That way you can specify a range of elements starting at a certain index and stop at another. If you would like to use the title attribute like in your example above you would need 13 selections changing the letter each time.&lt;/P&gt;
  &lt;P&gt;Have a look &lt;A target="_blank" href="http://nthmaster.com/"&gt;here&lt;/A&gt; to learn more about the nth-child approach. Please mark answers as correct or helpful if they were.&lt;/P&gt;
  &lt;P&gt;Kind regards&lt;/P&gt;
  &lt;P&gt;Martin&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2017 08:03:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525700#M104942</guid>
      <dc:creator>Martin-Pankraz</dc:creator>
      <dc:date>2017-08-08T08:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: Spreadsheet Fixed column size or column resize</title>
      <link>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525701#M104943</link>
      <description>&lt;P&gt;Hi Martin. I don't think the "Helpful Answer" option was carried over from the old SCN &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2017 11:15:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525701#M104943</guid>
      <dc:creator>MustafaBensan</dc:creator>
      <dc:date>2017-08-08T11:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Spreadsheet Fixed column size or column resize</title>
      <link>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525702#M104944</link>
      <description>&lt;P&gt;Oh boy, you are right Mustafa. I miss the old days when I got emails when someone posted a reply on my message chains.&lt;/P&gt;
  &lt;P&gt;Kind regards&lt;/P&gt;
  &lt;P&gt;Martin&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2017 14:34:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525702#M104944</guid>
      <dc:creator>Martin-Pankraz</dc:creator>
      <dc:date>2017-08-08T14:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: Spreadsheet Fixed column size or column resize</title>
      <link>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525703#M104945</link>
      <description>&lt;P&gt;Yes, alas the good old days &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; The email notifications on replies should be working though if you have activated them in your profile settings.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2017 15:31:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525703#M104945</guid>
      <dc:creator>MustafaBensan</dc:creator>
      <dc:date>2017-08-08T15:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Spreadsheet Fixed column size or column resize</title>
      <link>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525704#M104946</link>
      <description>&lt;P&gt;Hi Martin,&lt;/P&gt;
  &lt;P&gt;Thank you very much - your tips solved my issue. With below code I am able to control column size for required columns. Honestly I didn't need to do this if SAP Lumira 2.0 (Beta version) designer application renders properly as of SAP BEX or WAD applications which fits perfectly on small screens. &lt;/P&gt;
  &lt;P&gt;.sapEpmUiControlAnalyticgridGridTableInner&amp;gt;tbody&amp;gt;tr&amp;gt;td:nth-child(2){&lt;BR /&gt; width: 150px!important;&lt;BR /&gt; min-height: 16px!important;&lt;BR /&gt;}&lt;/P&gt;
  &lt;P&gt;.sapEpmUiControlAnalyticgridGridTableInner&amp;gt;tbody&amp;gt;tr&amp;gt;td:nth-child(3){&lt;BR /&gt; width: 150px!important;&lt;BR /&gt; min-height: 16px!important;&lt;BR /&gt;}&lt;/P&gt;
  &lt;P&gt;Appreciate your help.&lt;/P&gt;
  &lt;P&gt;Cheers&lt;/P&gt;
  &lt;P&gt;SK&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 03:39:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525704#M104946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-08-09T03:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: Spreadsheet Fixed column size or column resize</title>
      <link>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525705#M104947</link>
      <description>&lt;P&gt;Hi Sai,&lt;/P&gt;
  &lt;P&gt;This is a little of topic. But the rendering of the spreadsheet and its content with scrollbars is by design. Responsive design in terms of size for objects for different screens is something that you can take care of yourself. One thing I usually do, is applying a special CSS property called media query. You can have a look at it &lt;A href="https://www.w3schools.com/css/css_rwd_mediaqueries.asp"&gt;here&lt;/A&gt;.&lt;/P&gt;
  &lt;P&gt;You basically wrap your css code in this additional css property and define different behavior for different screen sizes. That way you can shrink/increase fonts margins etc according to your needs.&lt;/P&gt;
  &lt;P&gt;I can understand that you want this behavior out of the box though. At some point Lumira 2.x will get there. The new responsive layout container is already a step into the right direction.&lt;/P&gt;
  &lt;P&gt;Kind regards&lt;/P&gt;
  &lt;P&gt;Martin&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 06:43:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525705#M104947</guid>
      <dc:creator>Martin-Pankraz</dc:creator>
      <dc:date>2017-08-09T06:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: Spreadsheet Fixed column size or column resize</title>
      <link>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525706#M104948</link>
      <description>&lt;P&gt;Hi Martin,&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;Thanks for your suggestions - I've tried both @media query and adaptive layout in past and both failed to fit spreadhseet on laptop screen, eventually it produces scroll bar. I have users would like to see 12 months data at glance without scrolling, for now they are using browser zoom in and zoom out options to achieve that which is not a feasible solution. I've approached and suggested SAP design studio product managers through SAP Ideas to remove units in each and every cell with which we can get rid off extra space (please screenshot) it is consuming but SAP reluctant to do this as from SAP Lumira 2.1 planning is mainly based on cross tab not spread sheet.&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/59987-lpgzr.png" /&gt;&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;Looks like we have to wait for SAP to get basis right by the time Power BI and Tableau and Qlik will be more advanced. &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;Thanks again.&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;Cheers&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;SK&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2017 06:03:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525706#M104948</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-08-14T06:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: Spreadsheet Fixed column size or column resize</title>
      <link>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525707#M104949</link>
      <description>&lt;P&gt;Hi Sai,&lt;/P&gt;
  &lt;P&gt;if zooming works for you, decreasing the font size to fit your content on a laptop screen using a css media query will as well. Also you could consider using the toggle button feature of the spreadsheet to use the space more efficient:&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/61088-spreadsheet.png" /&gt;&lt;/P&gt;
  &lt;P&gt;The property is called "Dimension Toggles Visible".&lt;/P&gt;
  &lt;P&gt;Your media query may look something like this for a typical small laptop resolution (1280px x 1024px):&lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;@media only screen and (max-width: 1280px){
...
}&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;You can take it from there to handle multiple resolutions in your css by adding another condition to the media query defining lower limits with "min-width" and an additional "and".&lt;/P&gt;
  &lt;P&gt;Kind regards&lt;/P&gt;
  &lt;P&gt;Martin&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2017 06:59:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525707#M104949</guid>
      <dc:creator>Martin-Pankraz</dc:creator>
      <dc:date>2017-08-14T06:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: Spreadsheet Fixed column size or column resize</title>
      <link>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525708#M104950</link>
      <description>&lt;P&gt;Hi Martin,&lt;/P&gt;
  &lt;P&gt;Thanks for your suggestions, for example I've created simple app in Lumira designer and in CSS mentioned below code. Most of our users complaining about rendering and fixing this by anything means a big win for us. Can you please suggest if I am doing anything wrong here. &lt;/P&gt;
  &lt;P&gt;Thank you. &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;/* Custom CSS */&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;@media only screen (min-width:668px) and (max-width:1400px) {&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;&lt;EM&gt;.fs&lt;/EM&gt; { font-size: &lt;EM&gt;5px&lt;/EM&gt;&lt;EM&gt;!important&lt;/EM&gt;; }&lt;/P&gt;
  &lt;P&gt;}&lt;/P&gt;
  &lt;P&gt;the class fs been used on crosstab and spreadsheet component and executed the app on my laptop and still everything appears big. Also tried without class fs but the same output. &lt;/P&gt;
  &lt;P&gt;Laptop resolution:&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/65268-kzdtm.png" /&gt;&lt;/P&gt;
  &lt;P&gt;App Output&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/65269-drb2b.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2017 06:38:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525708#M104950</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-08-18T06:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: Spreadsheet Fixed column size or column resize</title>
      <link>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525709#M104951</link>
      <description>&lt;P&gt;Hi Martin,&lt;/P&gt;
  &lt;P&gt;Toggle dimensions may not be feasible solution for me as I have planning functions to be applied, for example user select customer cell and applies % growth or distribution planning function so dimensions needs to be visible - I have tried below css but no luck, it's not only reducing the font size but also components should shrink and I don't know how to achieve this using @ media.&lt;/P&gt;
  &lt;P&gt;@media only screen and (max-width: 1280px){&lt;BR /&gt;...&lt;BR /&gt;}&lt;/P&gt;
  &lt;P&gt;Thanks for all your suggestions and hoping SAP will fix rendering issue in future updates.&lt;/P&gt;
  &lt;P&gt;Cheers&lt;/P&gt;
  &lt;P&gt;SK&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2017 05:52:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525709#M104951</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-08-23T05:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Spreadsheet Fixed column size or column resize</title>
      <link>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525710#M104952</link>
      <description>&lt;P&gt;Hi Sai,&lt;/P&gt;
  &lt;P&gt;You need to check how CSS works more in detail to get this right. Here is a css selector for you to start from:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;@media only screen and (min-width:668px) and (max-width:1400px) {  
	.fs td {
		font-size: 5px!important;
	}
}&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;You have to assign your custom class "fs" to the spreadsheet. The selector will target all elements having that class and the td element. That is the combination which actually targets the html elements containing the text. You can test different resolutions with your range of css media queries with the browsers developer tools. They allow you to simulate different devices like HD laptops, IPads or mobiles.&lt;/P&gt;
  &lt;P&gt;To make sure the bounds of the spreadsheet fit the screen, make sure to assign "auto" to its width. Put a feasible margin on the right and left. Now you only have to play with the font-size and the width of the specific table elements "tr" and "td" until everything fits on your target device. I have to admit that the width adjustment won't be as straight forward as the font adjustment. You can get a feeling by adding width:100px!important to the selector above. That however will shrink too many fields.&lt;/P&gt;
  &lt;P&gt;Kind regards&lt;/P&gt;
  &lt;P&gt;Martin&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2017 09:25:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525710#M104952</guid>
      <dc:creator>Martin-Pankraz</dc:creator>
      <dc:date>2017-08-24T09:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Spreadsheet Fixed column size or column resize</title>
      <link>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525711#M104953</link>
      <description>&lt;P&gt;Hi Martin,&lt;/P&gt;
  &lt;P&gt;Thanks for your patience - with your suggestion I have managed to reduce the font size and with width 100PX .&lt;/P&gt;
  &lt;P&gt; You can notice font size getting small on speadsheet but columns width remain same, I can see measure Jan and rest of them visible with scroll bar means all columns are fitting on screen. &lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/64636-trnew.png" /&gt;&lt;/P&gt;
  &lt;P&gt;Thanks&lt;/P&gt;
  &lt;P&gt;SAI&lt;/P&gt;</description>
      <pubDate>Mon, 28 Aug 2017 05:37:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/spreadsheet-fixed-column-size-or-column-resize/qaa-p/525711#M104953</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-08-28T05:37:49Z</dc:date>
    </item>
  </channel>
</rss>

